Where is my pythonpath stored? When I write

import sys
sys.path

Where does python get that data?

link|improve this question

any reason you want to know where it is stored? If you want python to use a different pythonpath, you could set the environment variable: PYTHONPATH. – William Niu Aug 5 '10 at 11:53
feedback

2 Answers

up vote 2 down vote accepted

Python gets that data from the path attribute of the sys module. This path is a list, and if you want to add a new directory to the path, you just use the "append" method.

For instance, to add the directory /home/me/mypy to the path, just do:

import sys sys.path.append("/home/me/mypy")

link|improve this answer
feedback

But where is the list stored? What is the difference between PATH, PYTHONPATH?

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

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