[Tutor] What is the Python Path in windows 98?

Sean 'Shaleh' Perry shalehperry@home.com
Wed, 14 Nov 2001 10:43:09 -0800 (PST)


On 14-Nov-2001 crapaudada wrote:
> Hello,
> 
> I am trying to use Wasp, a template engine written in Python.
> 
> In theory, it is platform independent. The documentation says:
> "Put Wasp (all the .py files) in any folder as long as it is on your Python 
> path."
> 
> But I don't know what exactly is the Python Path.
> 
> I searched the doc I could find on the web, and with the ActiveState 
> distribution. But I couldn't find it.
> 

$ python
>>> import sys
>>> sys.path
['', '/usr/lib/python2.1', '/usr/lib/python2.1/plat-linux2', '/usr/lib/python2.\
1/lib-tk', '/usr/lib/python2.1/lib-dynload', '/usr/local/lib/python2.1/site-pac\
kages', '/usr/local/lib/site-python', '/usr/lib/python2.1/site-packages', '/usr\
/lib/site-python']

That is the output on a Debian linux box.  Try that on your machine and it
should give the output you need.