|
From: ajdcds <aj...@ho...> - 2013-10-02 13:19:28
|
Hi Mike,
thank you for your interest.
If I replace the following statement on formlayout.py:
/try:
from PyQt4.QtGui import QFormLayout
except ImportError:
raise ImportError, "Warning: formlayout requires PyQt4 >v4.3"/
With this one:
/from PyQt4.QtGui import QFormLayout/
Then the error is the following:
/Traceback (most recent call last):
File "file.py", line 83, in <module>
import <something>
File "includes\something.py", line 31, in <module>
import matplotlib.pyplot as plt
File "C:\Python26\lib\site-packages\matplotlib\pyplot.py", line 95, in
<module>
new_figure_manager, draw_if_interactive, show = pylab_setup()
File "C:\Python26\lib\site-packages\matplotlib\backends\__init__.py", line
25, in pylab_setup
globals(),locals(),[backend_name])
File
"C:\Python26\lib\site-packages\matplotlib\backends\backend_qt4agg.py", line
12, in <module>
from backend_qt4 import QtCore, QtGui, FigureManagerQT, FigureCanvasQT,\
File "C:\Python26\lib\site-packages\matplotlib\backends\backend_qt4.py",
line 18, in <module>
import matplotlib.backends.qt4_editor.figureoptions as figureoptions
File
"C:\Python26\lib\site-packages\matplotlib\backends\qt4_editor\figureoptions.py",
line 11, in <module>
import matplotlib.backends.qt4_editor.formlayout as formlayout
File
"C:\Python26\lib\site-packages\matplotlib\backends\qt4_editor\formlayout.py",
line 53, in <module>
from PyQt4.QtGui import QFormLayout
ImportError: DLL load failed: The specified procedure could not be found./
--
View this message in context: http://matplotlib.1069221.n5.nabble.com/Matplotlib-installation-with-Python-x-y-tp42149p42152.html
Sent from the matplotlib - users mailing list archive at Nabble.com.
|