PyScripter与PyQT崩溃

问题描述:

我开始使用PYQT,当我第二次启动时,我的IDE PyScripter系统地关闭!即使是非常简单的代码,如:PyScripter与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

+0

非常好!我认为这是默认选项,但没有。现在好了。 – philnext 2011-03-16 15:34:28