Error import PyWinTypes24.dll
Peter Hansen
peter at engcorp.com
Fri Oct 29 11:04:05 EDT 2004
More information about the Python-list mailing list
Fri Oct 29 11:04:05 EDT 2004
- Previous message (by thread): Error import PyWinTypes24.dll
- Next message (by thread): Reading XML like Python!
- Messages sorted by: [ date ] [ thread ] [ subject ] [ author ]
Alain wrote: > I'm working on Windows XP, with Python24. > I've a trouble with PyWinTypes24.dll (python Windows extensions). > Trouble is not due to specific python version 24. > > To distribute my applications, I don't want to put anything else > elsewhere (neither in Windows/System32 nor in registry). > So I deliver a folder (says HOME) that contains two mains folders > - a folder Python24 that contains python distribution and > msvcr71.dll, python24.dll, PyWinTypes24.dll > - a folder apps that contain a folder per python application > > I start my python applications with such command : > HOME/Python24/Python HOME/apps/app1/run.py > Windows complains that it cannot found PyWinTypes24.dll. > If I copy PyWinTypes24.dll in each HOME/apps/appX folder, then it > works. > It's a solution but not very nice. > Is there a solution without duplicate PyWinTypes24.dll ? Is there any reason you aren't just using py2exe and creating a proper Windows installer (with, say, InnoSetup), instead of doing it the hard way? If for some reason you really insist on avoiding any changes to the registry (which InnoSetup will probably make for you, automatically), then you could just distribute a .zip of the dist folder py2exe creates. Still no problems such as you are facing above. -Peter
- Previous message (by thread): Error import PyWinTypes24.dll
- Next message (by thread): Reading XML like Python!
- Messages sorted by: [ date ] [ thread ] [ subject ] [ author ]
More information about the Python-list mailing list