Re: Windows Python

Guido.van.Rossum@cwi.nl
Mon, 09 May 1994 17:06:53 +0200

> How do you set the path that qwpython uses to search for library files?

You can assign a list of directory names to sys.path (first import sys),
or you can set the DOS environment variable PYTHONPATH to a semicolon-
separated list of directory names. (I don't know how to do this from
inside Windows, sorry.)

--Guido