I've made a program in python/tkinter, used pyinstaller to make a standalone executable (.exe). However, when i run it command prompt opens as well as the program. Is the issue with python or pyinstaller?
Is there a way to avoid this?
I've made a program in python/tkinter, used pyinstaller to make a standalone executable (.exe). However, when i run it command prompt opens as well as the program. Is the issue with python or pyinstaller?
Is there a way to avoid this?
Just add --windowed or --noconsole to your pyinstaller statement:
pyinstaller --windowed script.py