Getting rid of console output when freezing Python programs using Pyinstaller -


i have written simple program grandfather using python gui tkinter, , works beautifully using for. however, there is, of course, ugly console output window. have gotten rid of changing extension of file .py .pyw. when freeze using pyinstaller, reappears again! there way me fix this?

thanks in advance.

if want hide console window, here documentation: how use --noconsole option

python pyinstaller.py --noconsole yourscript.py 

if need using pyinstaller point need use --noconsole option here simple tutorial getting there.


Comments

Popular posts from this blog

javascript - Count length of each class -

What design pattern is this code in Javascript? -

hadoop - Restrict secondarynamenode to be installed and run on any other node in the cluster -