Probleme mit Matplotlib als lokaler Nutzer
Verfasst: Montag 31. Januar 2011, 13:16
Hallo Leute,
ich bin frischer Nutzer von Python und habe auf meinem Privatrechner mit administrativen Rechten (Win7 64bit, Python 2.6.6, Matplotlib 1.0.0 für win 32) ein Programm geschrieben, welches auch PYPLOT aus Matplotlib nutzen soll.
Das Programm läuft einwandfrei.
Nun brauche ich das Programm auf der Arbeit auf meinem Rechner (win XP 64bit) ohne admin-Rechte (bekomme ich auch nicht) und wollte das Programm dort laufen lassen. Das Programm läuft dort auch, ich kann nur nichts plotten da es zu den folgenden Problemen mit pyplot von Matplotlib kommt:
>>> from matplotlib import pyplot
Traceback (most recent call last):
File "<pyshell#7>", line 1, in <module>
from matplotlib import pyplot
File "C:\Python26\lib\site-packages\matplotlib\pyplot.py", line 23, in <module>
from matplotlib.figure import Figure, figaspect
File "C:\Python26\lib\site-packages\matplotlib\figure.py", line 16, in <module>
import artist
File "C:\Python26\lib\site-packages\matplotlib\artist.py", line 6, 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: Das angegebene Modul wurde nicht gefunden.
>>>
Wüsste jemand wo der Fehler liegt und was ich tun kann?
Vielen Dank schon mal für eure Mühe!
MfG
MettyG
ich bin frischer Nutzer von Python und habe auf meinem Privatrechner mit administrativen Rechten (Win7 64bit, Python 2.6.6, Matplotlib 1.0.0 für win 32) ein Programm geschrieben, welches auch PYPLOT aus Matplotlib nutzen soll.
Das Programm läuft einwandfrei.
Nun brauche ich das Programm auf der Arbeit auf meinem Rechner (win XP 64bit) ohne admin-Rechte (bekomme ich auch nicht) und wollte das Programm dort laufen lassen. Das Programm läuft dort auch, ich kann nur nichts plotten da es zu den folgenden Problemen mit pyplot von Matplotlib kommt:
>>> from matplotlib import pyplot
Traceback (most recent call last):
File "<pyshell#7>", line 1, in <module>
from matplotlib import pyplot
File "C:\Python26\lib\site-packages\matplotlib\pyplot.py", line 23, in <module>
from matplotlib.figure import Figure, figaspect
File "C:\Python26\lib\site-packages\matplotlib\figure.py", line 16, in <module>
import artist
File "C:\Python26\lib\site-packages\matplotlib\artist.py", line 6, 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: Das angegebene Modul wurde nicht gefunden.
>>>
Wüsste jemand wo der Fehler liegt und was ich tun kann?
Vielen Dank schon mal für eure Mühe!
MfG
MettyG