使用PyQT在PyScripter中崩溃

时间:2011-03-16 15:09:23

标签: python pyqt pyqt4 pyscripter

我开始使用PYQT,当我第二次启动时,我的IDE PyScripter会被系统地关闭!即使对于非常简单的代码,例如:

#!/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版本2.4.1.0; Python 2.7.1; PyQt4的

1 个答案:

答案 0 :(得分:1)