我开始使用PYQT,当我第二次启动时,我的集成开发环境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
发布于 2011-03-16 23:18:31
你必须使用远程引擎。请参阅http://code.google.com/p/pyscripter/wiki/RemoteEngines
https://stackoverflow.com/questions/5327298
复制相似问题