Just in case. Python 2.4 now supports loaded modules directly from zip files, and there are many canned distribution situations where this is an excellent choice. You just zip the modules you need from Python24\lib directory into Python24\python24.zip, and Python loads them from the zip.
Rather than require the setup tools to use hacks to modify the PYTHONPATH variable manually, a standard spot is placed into the path automatically.
···
On Tue, 13 Sep 2005 00:32:46 -0400, "Gilles Kirouac" <gkirouac@riq.qc.ca> wrote:
Also
print sys.path
['', 'C:\\Python24\\python24.zip', 'C:\\Python24', 'C:\\Python24\\DLLs', 'C:\\P
thon24\\lib', 'C:\\Python24\\lib\\plat-win', 'C:\\Python24\\lib\\lib-tk', 'C:\\
ython24\\lib\\site-packages', 'C:\\Python24\\lib\\site-packages\\wx-2.6-msw-uni
ode']why is C:\\Python24\\python24.zip in the path? It doesn't even exist!
--
Tim Roberts, timr@probo.com
Providenza & Boekelheide, Inc.