|
From: Romi A. <ro...@gm...> - 2009-03-19 15:02:34
|
Hi!
I'm having a bit difficulty getting matplotlib to run under windows
(vista x64) with python 2.6.
I downloaded the source from svn, ran the build and install commands,
then copied the content of /build/lib.win32-2.6
to Lib/site-packages folder. But when I try to import pylab I get the
following error message:
Traceback (most recent call last):
File "<pyshell#0>", line 1, in <module>
import pylab
File "C:\Python26\lib\site-packages\pylab.py", line 1, in <module>
from matplotlib.pylab import *
File "C:\Python26\lib\site-packages\matplotlib\pylab.py", line 207, in
<module>
from matplotlib import mpl # pulls in most modules
File "C:\Python26\lib\site-packages\matplotlib\mpl.py", line 1, in
<module>
from matplotlib import artist
File "C:\Python26\lib\site-packages\matplotlib\artist.py", line 5, in
<module>
from transforms import Bbox, IdentityTransform, TransformedBbox,
TransformedPath
File "C:\Python26\lib\site-packages\matplotlib\transforms.py", line
34, in <module>
from matplotlib._path import affine_transform
ImportError: No module named _path
So, where might I find the _path module be?
Thanks in advance,
Romi
|