本文主要是介绍Python教程:windows下matplotlib安装错误(ImportError: matplotlib requires dateutil),希望对大家解决编程问题提供一定的参考价值,需要的开发者们随着小编来一起学习吧!
引用matplotlib包的时候出现一个问题,百度一下才知道问题再哪里,我们先来看看问题是什么。错误提示为:ImportError: matplotlib requiresdateutil
我使用二进制安装文件来安装这个包,安装过程没有出现任何问题
-
-
在我使用【import matplotlib】引入该模块的时候,出现了这个错误:
-
File "D:\Python27\lib\site-packages\matplotlib\__init__.py", line 111, in <module>
raise ImportError("matplotlib requires dateutil")
ImportError: matplotlib requires dateutil
-
其实就是引入matplotlib模块需要用到dateutil模块。假如你没有安装setuptools,我们可以看这篇文章进行安装:http://blog.csdn.net/u011630575/article/details/53415995
-
打开cmd窗口
-
输入这个,找不到这个模块
-
我们得用:easy_install python-dateutil(easy_install.exe python-dateutil)
-
安装好了以后,我们就可以正确引用matplotlib
这篇关于Python教程:windows下matplotlib安装错误(ImportError: matplotlib requires dateutil)的文章就介绍到这儿,希望我们推荐的文章对编程师们有所帮助!