2011-03-16 4 views
0

두 번째로 시작할 때 PYQT를 사용하기 시작합니다. PyScripter가 체계적으로 닫힙니다. 다음과 같은 아주 간단한 코드 일지라도 :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

답변

관련 문제