Jacob Kruger wrote: > Typed in following command line code using sort of standard setup.py file > that works on other things like my mapData IF engine, but did change the name > of the .py file it should process: > python setup.py py2exe > > The last 2 lines rendered in that window are then the following: > *** finding dlls needed *** > error: MSVCP90.dll: No such file or directory > > That specific DLL gets copied quite easily into the relevant subfolder of the > dist folder when I run a similar command for my much larger, but, I suppose, > simpler, mapData app, since that one doesn't try to import libraries/modules > like piaudiere or wxPython as such.
MSVCP90.DLL is one of the DLLs caught up in the Microsoft "side-by-side" stupidity. It cannot just be copied into a destination folder, it has to be properly installed with a manifest. Do you have some custom extensions? I didn't think there were any versions of Python that were built with Visual Studio 2008. VS2010 wisely eliminates the side-by-side stuff for the CRT DLLs, so the problem goes away. -- Tim Roberts, [email protected] Providenza & Boekelheide, Inc. _______________________________________________ python-win32 mailing list [email protected] http://mail.python.org/mailman/listinfo/python-win32
