I have finally completed my project and am attempting to use the mcmillan installer to package up the
program. I am running into problems when trying to build a standalone executable, please understand this is my first python and event-based application.
Im an running windows 2000, with python 2.0 and wxPython 2.2 (latest stable)
In the python code I import wxPython as follows:
from wxPython.wx import *
This produces: parent = self.modules[parent_fqname] ### sys -> self
KeyError: wxPython
If i import wxPython as “from wx import *” the installer will continue sucessfully however it does not
find the module. When I copy wxc.pyd into the directory, I received the same error, if I rename it of course it dies while loading.
I ave a feeling I am missing something basic in the wxPython installtion, like files in the wrong place or importing the module incorrectly. Any help would be greatly appreciated.
Thanks – Michael