Hi Mike,
Mike Maddi wrote:
> Hi,
>
> I am having a rather odd problem with py2exe. I have 2 XP machines
> with identical python 2.5 and py2exe installs. One machine is an old
> pentium III and the other is a new dual core Intel chip set. I can
> build and run my python app on the old pentium machine but it won't
> run on the new intel machine. I can run the .py app on my intel and I
> can successfully build the app using py2exe on my intel but it won't
> run on the intel machine. However, that same app built on the intel
> that won't run on the intel will run on the old pentium machine. Here
> is a copy of the error log I get when I try to run it on the intel
> machine.
>
> Traceback (most recent call last):
> File "ROV_Con.py", line 12, in <module>
> File "zipextimporter.pyo", line 78, in load_module
> File "wx\__init__.pyo", line 45, in <module>
> File "zipextimporter.pyo", line 78, in load_module
> File "wx\_core.pyo", line 4, in <module>
> File "zipextimporter.pyo", line 91, in load_module
> ImportError: MemoryLoadLibrary failed loading wx\_core_.pyd
>
> I don't understand this because those files are all there. Everthing
> is identical on both machines. I've posted this on python-forum.org -
> > Python Tools but nobody can help. Please respond.
>
> Thank you very much,
Some time back the same error was reported and Josiah suggested the
following:
If the win2k pro box is using wxPython 2.8 or higher, it's likely a
gdiplus.dll issue (checking earlier posts in the thread, that seems to
be it). Include that dll with the binary and it should work fine.
I'm surprised someone didn't mention it earlier, I was having the same
issue a few months ago, and the first thing that was mentioned was
'gdiplus.dll'.
But I don't see feed back by the OP if that solved the problem.
Werner
|