我刚刚使用win32安装程序在我的 Windows 7 Python 2.6.5计算机上安装了matplotlib。我已经尝试了matplotlib网站上的一些例子来测试安装, 在Idle everthing下工作正常,但 Pydev 1.9(Eclipse 3.6)无法找到任何子模块。
例如import matplotlib
不会导致任何错误
但from matplotlib.path import Path
抛出
ImportError: No module named path
我已经在eclipse中将matplotlib路径添加到系统PYTHONPATH ,还有什么我需要做的吗?
from pylab import *
import numpy as np
from matplotlib.transforms import Bbox
from matplotlib.path import Path
from matplotlib.patches import Rectangle
rect = Rectangle((-1, -1), 2, 2, facecolor="#aaaaaa")
gca().add_patch(rect)
bbox = Bbox.from_bounds(-1, -1, 2, 2)
for i in range(12):
vertices = (np.random.random((4, 2)) - 0.5) * 6.0
vertices = np.ma.masked_array(vertices, [[False, False], [True, True], [False, False], [False, False]])
path = Path(vertices)
if path.intersects_bbox(bbox):
color = 'r'
else:
color = 'b'
plot(vertices[:,0], vertices[:,1], color=color)
show()
Traceback (most recent call last):
File "I:\My Documents\Programming\Python\Eclipse Projects\test\src\matplotlib.py", line 1, in <module>
from pylab import *
File "C:\Python26\lib\site-packages\pylab.py", line 1, in <module>
from matplotlib.pylab import *
File "I:\My Documents\Programming\Python\Eclipse Projects\test\src\matplotlib.py", line 3, in <module>
from matplotlib.transforms import Bbox
ImportError: No module named transforms
答案 0 :(得分:4)
似乎您的文件名为matplotlib.py
。然后很清楚为什么这不起作用:当前目录总是被添加到系统路径之前,并且首先找到您的文件。由于它不包含transforms
子模块,导入将失败。 import matplotlib
本身可行,因为有一个名为matplotlib
的模块 - 您的文件名为matplotlib.py
。只需重命名文件即可。