我正在尝试绘制数据图表,这需要python中的matplotlib
模块,但我不断收到错误消息。
import matplotlib
Traceback (most recent call last):
File "<stdin>", line 1, in <module>
File "C:\Python27\lib\site-packages\matplotlib\__init__.py", line 125, in <module>
raise ImportError("matplotlib requires pyparsing")
ImportError: matplotlib requires pyparsing
所以我去网站上下载pyparsing并运行他们给我们的代码:
easy_install pyparsing
或者如果不起作用
easy_install http://cheeseshop.python.org/packages/source/p/pyparsing/pyparsing-2.0.1.tar.gz
但两者都没有效果。我究竟做错了什么?我正在使用Spyder IDE。