使用 python Matplotlib 库绘图
转载:http://blog.csdn.net/daniel_ustc/article/details/9714163
Matplotlib的安装可以参见 官网链接 http://matplotlib.org/users/installing.html
发现出现了下面的错误:
raise ImportError("matplotlib requires dateutil")
ImportError: matplotlib requires dateutil
这个需要dateutil,你可以到这里下载安装。
把dateutil 安装完后又出现如下错误:
raise ImportError("matplotlib requires pyparsing")
ImportError: matplotlib requires pyparsing
需要 pyparsing 到这里下载安装。
本文介绍了在使用Python的Matplotlib库时遇到的依赖错误及解决方法。首先需要安装dateutil来解决matplotlibrequiresdateutil错误,然后还需安装pyparsing以解决matplotlibrequirespyparsing错误。
1909

被折叠的 条评论
为什么被折叠?



