I recently created a Python program and I managed to pack it into an exe by using PyInstaller.
The problem is the exe it produced generates a window that disappears so fast I cant read whats in it.
I have found no way to keep that window open:
-c
and -w
PyIinstaller commands are not working, neither is --debug all
: the window is still appearing, producing super-fast terminal text in it and then closing itself without giving me enough time to read what problem it encountered.
Is there a way I can make PyInstaller exes produce a logfile of what happens when I run them? Do you have any other suggestion on what can I do to understand why my program crashes, or to keep its window opened up so I can read what is in it? Thanks for your interest :)