PyScripter与PyQT崩溃
我开始使用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