在Jupyter笔记本上,运行Python 3代码。试图建立一个平方树地图。
当我运行代码时:
导入平方为sq
ModuleNotFoundError到达。“没有名为'squarify'的模块。”
虽然我知道有这样一个模块。
有人能帮帮我吗?
我试着把
path/to/python-m pip安装squarify
和
安装squarify
在牢房里,但无济于事。
将squarify导入为sq
会导致:
ModuleNotFoundError Traceback (most recent call last)
<ipython-input-43-d5603c2d6e58> in <module>
6 #Put a title on the chart
7
----> 8 import squarify as sq
9
10 #determine count for each type weathersit
ModuleNotFoundError: No module named 'squarify'
谢谢你对这个问题的所有回答。从那以后我就明白了。我能给的最好的建议是在你的电脑上搜索蟒蛇提示符(蟒蛇3),这将拉起一个脚本。然后简单的时间pip安装squarify。
一旦这个程序加载到你的电脑上,试着在你的jupyter笔记本上导入squarify作为sq,这个块现在应该可以正常工作了。
祝大家好运,谢谢大家的帮助!
扎克
在我的例子中,squarify被添加到了miniconda中——我无法将它导入到anaconda中。我打开了Anaconda Navigator-卸载的miniconda。将anaconda和导入的squarify更新为anaconda(anaconda提示符),现在可以通过简单的导入squarify cmd工作。
对我来说,我打开了Anaconda Navigator,转到Environments base(根目录)并单击Open Terminal。我在终端中运行下面的命令,一切正常。
pip install squarify