Python教程:[53]matplotlib安装错误

2025-10-23 03:21:58

引用matplotlib包的时候出现一个问题,百度一下才知道问题再哪里,我们先来看看问题是什么。错误提示为:ImportError: matplotlib requires dateutil

    我使用二进制安装文件来安装这个包,安装过程没有出现任何问题

    Python教程:[53]matplotlib安装错误

    在我使用【import matplotlib】引入该模块的时候,出现了这个错误:

    Traceback (most recent call last):

      File "<pyshell#0>", line 1, in <module>

        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模块,那么我们可以通过easy_install命令来安装:假如你没用过easy_install ,你可以看这篇文章http://jingyan.baidu.com/article/2a1383284db4e2074a134f2c.html假如你没有安装setuptools,我们可以看这篇文章进行安装:http://jingyan.baidu.com/article/b907e627dd80df46e7891c2c.html

    打开cmd窗口

    Python教程:[53]matplotlib安装错误

    输入这个,找不到这个模块

    Python教程:[53]matplotlib安装错误

    我们得用:easy_install python-dateutil

    Python教程:[53]matplotlib安装错误

    Python教程:[53]matplotlib安装错误

    安装好了以后,我们就可以正确引用matplotlib

    Python教程:[53]matplotlib安装错误

(共篇)上一篇:win32com调用cons...|下一篇:
声明:本网站引用、摘录或转载内容仅供网站访问者交流或参考,不代表本站立场,如存在版权或非法内容,请联系站长删除,联系邮箱:site.kefu@qq.com。
猜你喜欢