vote up 4 vote down star

In ruby the library path is provided in $", in perl it's in @INC - how do you get the list of paths that Python searches for modules when you do an import?

flag

47% accept rate

3 Answers

vote up 8 vote down check

I think you're looking for sys.path

import sys
print sys.path
link|flag
vote up 5 vote down
import sys
sys.path
link|flag
vote up 5 vote down

You can also make additions to this path with the PYTHONPATH environment variable at runtime, in addition to:

import path
sys.path.append('/home/user/python-libs')
link|flag

Your Answer

Get an OpenID
or

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