vote up 3 vote down star

How do I find out which directories are listed in my system’s PYTHONPATH variable, from within a Python script (or the interactive shell)?

flag

78% accept rate

2 Answers

vote up 2 vote down check

sys.path might include items that aren't specifically in your PYTHONPATH environment variable. To query the variable directly, use:

>>> import os
>>> os.environ['PYTHONPATH'].split(os.pathsep)
link|flag
1  
(or, more generically ...split(os.sep) ). Can't figure out why you're not getting the love, Mark. Your reply is technically more accurate than Paul D Waite's own reply to his question ???? – mjv Sep 28 at 22:46
mjv - sometimes voting here can make little sense – foosion Sep 28 at 23:41
Ah, excellent. Thanks guys, I suspected I was doing something wrong. I’ve deleted my wrong answer; Mark, if you could edit your answer to include the os.sep bit, the points will rightfully be yours. – Paul D. Waite Sep 30 at 11:50
1  
os.sep is incorrect, see stackoverflow.com/questions/1499019/… – Mark Ransom Sep 30 at 16:03
1  
And that problem with the separator is probably why I wasn't getting the love. Thanks for setting me straight. – Mark Ransom Sep 30 at 16:03
show 1 more comment
vote up 5 vote down

Can't seem to edit the other answer. Has a minor error in that it is Windows-only. The more generic solution is to use os.sep as below:

sys.path might include items that aren't specifically in your PYTHONPATH environment variable. To query the variable directly, use:

import os
import sys
os.environ['PYTHONPATH'].split(os.sep)
link|flag

Your Answer

Get an OpenID
or

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