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?
Tell me more
×
Stack Overflow is a question and answer site for
professional and enthusiast programmers. It's 100% free, no registration required.
|
You can also make additions to this path with the PYTHONPATH environment variable at runtime, in addition to:
|
||||
|
|
$:.$"is a list of modules loaded byrequire. – The Doctor What Oct 9 '11 at 16:57