error in packing using py2exe

jamesdy

08-08-2007 15:18:24

one error, as below, poped up when i packed my .py file using py2exe.
"error:MSVCR80.dll:No such file or directory"
i found this dll file in \window\system32\,but i don't know to deal with it!
please show me the solution,thanks alot!

TimErwin

08-08-2007 21:38:16

did you try copying the dll into your application's root folder? That's where windows looks first for dlls.

andy

09-08-2007 00:41:36

Or can your tell py2exe to "ignore" a set of system dll's ??

You might need to ship the VC8 dependencies with your final product anyway as part of the install proceedure -- mush as I do with the Python-Ogre windows installer

Cheers
Andy

jamesdy

09-08-2007 07:53:27

thanks.
i've tried to put this dll in the same directory as setup file,but it didn't work.and i dont know how to ignore the dll.