I am running a script that explicitly sets the PYTHONPATH to avoid naming collisions. However, even if I say os.environ['PYTHONPATH'] = '', it looks as though the system is still able to find my old path that "lives" outside the script.

How is my system able to see the old PYTHONPATH even after I explicitly set it to a new one?

link|improve this question

Windows or Unix-like? – Rafe Kettler Nov 22 '10 at 2:04
feedback

1 Answer

up vote 4 down vote accepted

The PYTHONPATH environment variable is parsed at startup and inserted into sys.path. If you need to adjust the path from within your Python code, manipulate sys.path, not PYTHONPATH.

link|improve this answer
1  
You're a life-saver. That was driving me crazy! – Wraith Nov 22 '10 at 2:24
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.