Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

PySide2 not closing correctly with basic example

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 !

like image 762
mm_ Avatar asked Jan 20 '19 22:01

mm_


1 Answers

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)
like image 104
eyllanesc Avatar answered Nov 09 '22 11:11

eyllanesc