I have used the py2exe to build a “.exe” for my wxpython project, when the “exe” file run, it’s always show the python console window.
Is there any way to hide the console windows when run the “.exe” file?
I have seached this question on google, some guys said we can use ‘vbs’ to hide it, but as you know, all of us are used to click “xx.exe” to run a windows program.
Hi my friends,
I have used the py2exe to build a ".exe" for my wxpython project, when the "exe" file run, it's always show the python console window.
Is there any way to hide the console windows when run the ".exe" file?
I have seached this question on google, some guys said we can use 'vbs' to hide it, but as you know, all of us are used to click "xx.exe" to run a windows program.
In setup.py use:
windows = [script1, script2]
instead of:
console = [script1c, script2c],