When executing a deployed pyside6-application, which starts a QProcess, the app crashes after two or three runs, without any debug information or error code. When this app is executed from Qt (run, and also debug-mode), this does not happen. Also, using delete later on self.process did not solve the issue.
The app has basically the same structure as the example you provided. The deployed app was tested on Windows 11 as well as Windows 10 16.7 using Python3.11. How would you get rid of the old QProcess?
Error:
process terminated with exit code 3221225477, exit code 0xC0000005 (Access Violation)
'''
class ProcessManager(QWidget):
def init(self):
super().init()
self.process = None
When executing a deployed pyside6-application, which starts a QProcess, the app crashes after two or three runs, without any debug information or error code. When this app is executed from Qt (run, and also debug-mode), this does not happen. Also, using delete later on self.process did not solve the issue. The app has basically the same structure as the example you provided. The deployed app was tested on Windows 11 as well as Windows 10 16.7 using Python3.11. How would you get rid of the old QProcess?
Error: process terminated with exit code 3221225477, exit code 0xC0000005 (Access Violation)
''' class ProcessManager(QWidget): def init(self): super().init() self.process = None
'''