ImportError: o matplotlib requer datautil

Eu instalei o matplotlib com o python 2.6 em x64 Windows7. Quando tento importar o matplotlib, ele mostra o seguinte erro. Eu também instalei numpy seguindo este link:Instalando o Numpy no Windows 7 de 64 bits com o 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

Como posso fazer isso funcionar?

Eu instalei o matplotlib-1.3.0.win-amd64-py2.6.exe dehttp://matplotlib.org/downloads.html

questionAnswers(2)

yourAnswerToTheQuestion