Question

I begin to use PYQT and my IDE PyScripter is systematically closed when I launch for the second time ! Even for very simple code like :

#!/usr/bin/env python
import sys

from PyQt4.QtGui import QLabel, QApplication

if __name__=='__main__':
    App = QApplication(sys.argv)
    Label = QLabel( "Hello World!" )
    Label.show()
    App.exec_()

PyScripter Version 2.4.1.0 ; Python 2.7.1 ; PyQT4

Was it helpful?

Solution

You have to use the Remote Engine. See http://code.google.com/p/pyscripter/wiki/RemoteEngines

Licensed under: CC-BY-SA with attribution
Not affiliated with StackOverflow
scroll top