J
JZ
I do not know how to get rid off the black console window during execution
wxApp1.exe.
My setup.py file for py2exe is:
from distutils.core import setup
import py2exe
setup(console=["wxApp1.py"])
I tried different approach like
setup(console=["wxApp1.pyw"])
Nothing changed.
I tried also:
setup(name='wxApp1', scripts =['wxApp1.pyw'])
but in that situation I could not generate wxApp1.exe file at all.
wxApp1.exe.
My setup.py file for py2exe is:
from distutils.core import setup
import py2exe
setup(console=["wxApp1.py"])
I tried different approach like
setup(console=["wxApp1.pyw"])
Nothing changed.
I tried also:
setup(name='wxApp1', scripts =['wxApp1.pyw'])
but in that situation I could not generate wxApp1.exe file at all.