[Zope] I can't seem to get site-packages to work under Win32
Dieter Maurer
dieter@handshake.de
Tue, 17 Sep 2002 20:42:49 +0200
Friedlander Paul writes:
> The debug screen shows "C:\PROGRA~1\WebSite\bin\lib\site-packages" under
> syspath and
Look's like you have been a bit careless:
If "syspath" is "sys.path", then if you put the packages you want to
have in "site-packages" into "C:\PROGRA~1\WebSite\bin\lib\site-packages",
then they will be found.
Check that each package contains an "__init__.py". Some archivers
delete empty file on unpacking. This causes Python not to recognize
a package.
Dieter