Python Library Path - Stack Overflow most recent 30 from stackoverflow.com2009-12-02T06:25:14Zhttp://stackoverflow.com/feeds/question/135035http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/135035/python-library-path4Python Library PathKyle Burton2008-09-25T18:23:50Z2008-09-25T19:02:46Z
<p>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?</p>
http://stackoverflow.com/questions/135035/python-library-path/135050#1350505Answer by John Millikin for Python Library PathJohn Millikin2008-09-25T18:25:07Z2008-09-25T18:25:07Z<pre><code>import sys
sys.path
</code></pre>
http://stackoverflow.com/questions/135035/python-library-path/135051#1350518Answer by Jack M. for Python Library PathJack M.2008-09-25T18:25:18Z2008-09-25T18:25:18Z<p>I think you're looking for <a href="http://docs.python.org/tut/node8.html#SECTION008120000000000000000" rel="nofollow">sys.path</a></p>
<pre><code>import sys
print sys.path
</code></pre>
http://stackoverflow.com/questions/135035/python-library-path/135273#1352735Answer by Andrew Gwozdziewycz for Python Library PathAndrew Gwozdziewycz2008-09-25T19:02:46Z2008-09-25T19:02:46Z<p>You can also make additions to this path with the PYTHONPATH environment variable at runtime, in addition to:</p>
<pre><code>import path
sys.path.append('/home/user/python-libs')
</code></pre>