Executable built with PyInstaller (PySide6 app) only runs on my development PC, not on other machines #9318
-
Executable built with PyInstaller (PySide6 app) only runs on my development PC, not on other machinesHi, My project repository (build scripts are in Environment
Behavior on other PCs
If anyone has advice or sees what might be wrong, I would appreciate any help. Thanks in advance! |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment 2 replies
-
So what is actually happening? Does the application crash (= "exit immediately") or does it run but does not show a window? You could try building without |
Beta Was this translation helpful? Give feedback.
Then you could have an exception in a secondary thread, or in a Qt callback; those usually don't terminate the application, and may sometimes stop the program flow, at least in my experience.
Like I said, try to enable console (remove
--windowedflag from your build script) and see what output you get in the console.