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
Post a Comment