2011-12-23 46 views
3

我試過使用Mac OS X上的EPD安裝,Ubuntu上的apt-get安裝過程以及Ubuntu上的EPD安裝。使用matplotlib:ImportError:沒有模塊命名爲動畫?

在Python交互式解釋器:

>>> import matplotlib.animation as animation 
Traceback (most recent call last): 
    File "<stdin>", line 1, in <module> 
ImportError: No module named animation 

也就是說進口是這個matplotlib示例代碼中使用:

http://matplotlib.sourceforge.net/examples/animation/double_pendulum_animated.html

+0

'matplotlib .__ version__'?它在1.1.0上適合我。你在matplotlib'__init __。py'文件所在的文件夾中有一個'animation.py'文件嗎? ('/ usr/local/lib/python2.7/dist-packages/matplotlib/animation.py') – wim 2011-12-23 04:31:04

+0

版本是1.0.1,我無法使用'sudo find/-name animation來找到animation.py。 py'非常感謝您的快速響應!我會看看使用1.1.0是否解決了這個問題。 – nickgroenke 2011-12-23 04:59:38

+4

是的,'動畫'模塊在1.1.0中是新的。請參閱[發行說明](http://matplotlib.sourceforge.net/users/whats_new.html)。 – Avaris 2011-12-23 07:01:39

回答