Getting rid of console output when freezing Python programs using Pyinstaller

If you want to hide the console window, here is the documentation:
This is how you use the --noconsole option

python pyinstaller.py --noconsole yourscript.py

If you need help using pyinstaller to get to the point where you need to use the --noconsole option here is a simple tutorial for getting there.

Leave a Comment