ImportError: matplotlib需要dateutil

8 浏览
0 Comments

ImportError: matplotlib需要dateutil

我已经成功在x64 Windows7上使用Python 2.6安装了matplotlib。当我尝试导入matplotlib时,出现以下错误。我还按照这个链接安装了numpy:在64位Windows 7上安装Python 2.7.3的Numpy

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

我如何使其工作?我从http://matplotlib.org/downloads.html下载了matplotlib-1.3.0.win-amd64-py2.6.exe。

0