Hello guys!
How are you doing all
I again need help:?:
Can anyone help me to get SPE IDE run
as executable using py2exe? I have tried using code below
what I get is exe file but when I run it I get message
.....needs higher version of wxpython... error, while it is not true
I have latest stable versions of wxpython and python and py2exe
by the way the code is this
from distutils.core import setup
import py2exe
import sys
if len(sys.argv) == 1:
sys.argv.append("py2exe")
setup( options = {"py2exe": {"compressed": 1, "optimize": 2, "ascii": 1, "bundle_files": 1}},
zipfile = None,
windows = [{"script": 'SPE.pyw'}] )
Ideas ,solutions are Highly appreciated!
Steve