2011-03-16 4 views
0

Je commence à utiliser PYQT et mon IDE PyScripter est systématiquement fermé lorsque je lance pour la deuxième fois! Même pour un code très simple tel que:Crash dans PyScripter avec PyQT

#!/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

Répondre