Problem with win32ui

Gabriel Genellina gagsl-py2 at yahoo.com.ar
Tue Dec 22 12:05:05 EST 2009


En Tue, 22 Dec 2009 12:31:37 -0300, Marc Grondin <marcg666 at gmail.com>  
escribió:

> Hello everyone,
> So i have been building an app with python(and learning as i go along) my
> knowledge of python is still kinda limited but the app work on my pc. I  
> have
> also compiled it to an exe using py2exe and it also works fine this way  
> on
> my pc(where python is installed) if however i try to run it from a pc  
> where
> python is not installed i get this message:
>
> Traceback (most recent call last):
>   File "printorders.py", line 2, in <module>
>   File "win32ui.pyc", line 12, in <module>
>   File "win32ui.pyc", line 10, in __load
> ImportError: DLL load failed: The specified module could not be found.

There is a missing DLL. Dependency Walker is a useful tool to solve this  
kind of problems:
http://technet.microsoft.com/en-us/library/cc738370(WS.10).aspx
Once you know which DLL is missing, add it to your setup.py

-- 
Gabriel Genellina




More information about the Python-list mailing list