Possible Duplicate:
How can I hide the console window in a PyQt app running on Windows?
How to get rid of the console that shows up as standard output when running wxPython programs in Windows?
How to get rid of the console that shows up as standard output when running wxPython programs in Windows? |
||||
|
This question has been asked before and already has an answer. If those answers do not fully address your question, please ask a new question.
|
Others have already suggested of renaming from py to pyw. If you instead refer to Output redirection pass redirect=True when creating the wx.App class. See for instance http://www.wxpython.org/docs/api/wx.App-class.html The signature of
If you set |
|||
|
|
Not familiar with wxPython, but if you invoke your script with pythonw.exe rather than python.exe, the console window shouldn't appear. I believe saving the script as script.pyw also works. |
|||||||
|
|
The easiest way to do this:
This prints to stdout instead of the wxPython window. |
|||
|
|
I don't know wxPython but the solution might be as simple as using |
|||
|