Hi,
I’m trying to install pyqt4 on maya 2009 in linux. I can get it to load the modules but i get the following errors when run the test script mentioned in the linux install pdf in the devkit folder:
import sys
from PyQt4 import QtGui as qt
app = qt.QApplication(sys.argv)
hello = qt.QLabel(“Hello world!”, None)
hello.show()
app.processEvents()