我正在使用Windows 8,我正在尝试学习nltk。当我尝试创建dispersion_plot时出现错误
ImportError: No module named 'pylab'
我进行了谷歌搜索,发现了这个
http://matplotlib.org/users/installing.html
然而,似乎在Windows上安装它真的很难。任何人都可以给我更简单的指示(比如使用pip)来安装它吗?
基于下面给出的一些建议,我尝试了这个
D:\>d:\anaconda\scripts\pip install python-numpy python-scipy python-matplotlib
但我收到了错误
Downloading/unpacking python-numpy
Could not find any downloads that satisfy the requirement python-numpy
Cleaning up...
No distributions at all found for python-numpy
Storing debug log for failure in C:\Users\Abhishek\pip\pip.log
答案 0 :(得分:0)
如果您下载anaconda,那么您不需要做任何事情。如果您想自己安装,请尝试:
pip install python-numpy python-scipy python-matplotlib
或
sudo apt-get install python-numpy python-scipy python-matplotlib
答案 1 :(得分:0)
应该非常直接在Windows上安装它。正如已经指出的那样,像Anaconda这样的东西应该拥有你所需要的一切。
如果没有,那么你可以在这里实际使用二进制matplotlib安装程序:http://matplotlib.org/downloads.html
确保选择与python安装和体系结构相匹配的版本。你应该在那之后设置。