PySide2 not closing correctly with basic example

六眼飞鱼酱① 提交于 2019-11-27 07:01:45

问题


When I run the basic script:

import sys
from PySide2.QtWidgets import QApplication, QLabel

app = QApplication(sys.argv)
label = QLabel("Hello World")
label.show()
app.exec_()

forthe first time it all works fine. However, if I run it a second time I get:

File "../script.py", line 17, in <module>
app = QApplication(sys.argv)

RuntimeError: Please destroy the QApplication singleton before creating a new QApplication instance.

I am running the scripts in an Ubuntu machine. I get the same error in python2 and python3.

Thanks !


回答1:


Probably your IDE has already created a QApplication, so the solution is to create a QApplication if it does not exist:

app = QApplication.instance()
if app is None: 
    app = QApplication(sys.argv)


来源:https://stackoverflow.com/questions/54281439/pyside2-not-closing-correctly-with-basic-example

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!