ImportError:matplotlib需要dateutil

时间:2013-08-16 19:07:50

标签: python matplotlib python-dateutil

我已经在x64 Windows7上使用python 2.6成功安装了matplotlib。当我尝试导入matplotlib时,它显示以下错误。我还在此链接后安装了numpy:Installing Numpy on 64bit Windows 7 with Python 2.7.3

import matplotlib.pyplot as plt

Traceback (most recent call last):
  File "<pyshell#2>", line 1, in <module>
    import matplotlib.pyplot as plt
  File "C:\Python26\Lib\site-packages\matplotlib\__init__.py", line 110, in <module>
    raise ImportError("matplotlib requires dateutil")
ImportError: matplotlib requires dateutil

我怎样才能让它发挥作用?

我从http://matplotlib.org/downloads.html安装了matplotlib-1.3.0.win-amd64-py2.6.exe

2 个答案:

答案 0 :(得分:67)

以下是您可以在Windows上安装的程序列表:

http://www.lfd.uci.edu/~gohlke/pythonlibs/

您需要以下依赖项: 需要numpy,dateutil,pytz,pyparsing,six

答案 1 :(得分:54)

您可能正在寻找:

pip install python-dateutil