Re: [Tutor] How to set PYTHONPATH

2006-11-07 Thread Alan Gauld
"Eli Brosh" <[EMAIL PROTECTED]> wrote > How do i set the PYTHONPATH variable ? > How is it done under Windows XP ? Go to MyComputer and right click, select Properties Go to the Advanced Tab Click the EnvironmentVariables button In the lower window, labelled System Variables look for PYTHONPA

[Tutor] How to set PYTHONPATH

2006-11-06 Thread Eli Brosh
  How do i set the PYTHONPATH variable ? From answers to my query on "editing path" I realized that this is what should be done if i want to include another folder in the  Python search path.   I tried: import sys sys.path.append('additional path')   but it worked only at runtime and is forgotte