Replies: 1 comment 2 replies
-
PyInstaller just runs your frozen script, so whatever is stored or not is up to your code and the 3rd party packages you use. Or whoever/whatever calls the frozen program, if they happen to capture or redirect stdout and stderr.
Those are messages from your macOS shell/terminal, and have nothing to do with PyInstaller. And they are probably referring to saving/syncing command history, rather than saving the command's stdout/stderr.. |
Beta Was this translation helpful? Give feedback.
-
If you compile a simple python script that generates a random password, does
pyinstaller
save the output after you run the script?I am getting this message on the terminal after running my python script:
Saving session... ...copying shared history... ...saving history...truncating history files... ...completed.
I am assuming that the above message is indicating that the script has finished running, I am just curious whether it saves the output or not.
Any help is super appreciated, thanks 👌
machine: mac
Beta Was this translation helpful? Give feedback.
All reactions