QApplication freeze
Posted: Thu Jan 26, 2023 1:02 pm
I wanted to write a frontend for a python macro using pyside2 on linux mint 21 and libreoffice 7.4.
If I open a normal terminal and start python 3, entering the following works perfectly:
from PySide2 import QtWidgets, QtCore, QtGui
import sys
app = QtWidgets.QApplication(sys.argv)
However, using the APSO terminal, everything freezes on the third line. This also happens if I put it into a script and run that from writer.
If I open a normal terminal and start python 3, entering the following works perfectly:
from PySide2 import QtWidgets, QtCore, QtGui
import sys
app = QtWidgets.QApplication(sys.argv)
However, using the APSO terminal, everything freezes on the third line. This also happens if I put it into a script and run that from writer.