|
From: Marcin K. <mr...@gm...> - 2009-01-26 15:56:06
|
Hello Patrick,
> I had similar problems building on my windows machine until I did this
> and now it works fine. You might also check all the README documents,
> as one of them gives you more information about building for windows.
I followed the instructions from README in win32_static precisely. This
created file libpython26.a fine, etc. The build and installation process
finished fine.
However, when I try to do now
>>> import matplotlib
>>> from pylab import *
I get:
Traceback (most recent call last):
File "<pyshell#1>", line 1, in <module>
from pylab import *
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 206,
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: DLL load failed: The specified procedure could not be found.
Regards,
mk
|