I'm running ipython against EPEL's python 2.6 package on scientific linux 5.8.
The EPEL python2.6 distribution is hardly full featured, so to enable use of the qt4 matplotlib backend, I went ahead and compiled the latest versions of pyqt4 and qt4 (versions 4.9.4 and 4.8.2 respectively) and installed them for python 2.6.
The trouble is that IPython (with versions .13 and .14) barfs on the Qt4Agg backend. For example,
$ ipython --pylab
Python 2.6.8 (unknown, Apr 12 2012, 20:59:36)
Type "copyright", "credits" or "license" for more information.
IPython 0.14.dev -- An enhanced Interactive Python.
? -> Introduction and overview of IPython's features.
%quickref -> Quick reference.
help -> Python's own help system.
object? -> Details about 'object', use 'object??' for extra details.
Welcome to pylab, a matplotlib-based Python environment [backend: Qt4Agg].
For more information, type 'help(pylab)'.
In [1]: Traceback (most recent call last):
File "/usr/lib/python2.6/site-packages/IPython/lib/inputhookqt4.py", line 89, in inputhook_qt4
timer.timeout.connect(app.quit)
TypeError: pyqtSignal must be bound to a QObject, not 'QTimer'
Got exception from inputhook_qt4, unregistering.
I suspect pyqt installed correctly, though I haven't tried any more rigorous test than a simple hello world program.
Can anyone suggest a way to more rigorously test my pyqt or help resolve a possible versioning issue?