+ 1
How to avoid terminal opening in background?
I just create a small game using tkinter and convert into a .exe using pyinstaller when i opening that .exe the console also open but i don't need console i need only tk window how do i achieve this ?
2 ответов
+ 2
Pyinstaller has a --noconsole option that may fix this.
https://stackoverflow.com/questions/17584698/getting-rid-of-console-output-when-freezing-JUMP_LINK__&&__python__&&__JUMP_LINK-programs-using-pyinstaller
+ 2
Check this thread. Some of the comments have the instructions specific to operating system and also some hints for py2exe
https://stackoverflow.com/questions/764631/how-to-hide-console-window-in-JUMP_LINK__&&__python__&&__JUMP_LINK/764654