使用 PyQT 时 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 Version 2.4.1.0;蟒蛇2.7.1; pyqt4
I begin to use PYQT and my IDE PyScripter is systematically closed when I launch for the second time ! Even for very simple code like :
#!/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
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您必须使用远程引擎。请参阅 http://code.google.com/p/pyscripter/wiki/RemoteEngines
You have to use the Remote Engine. See http://code.google.com/p/pyscripter/wiki/RemoteEngines