Python Library Path - Stack Overflow most recent 30 from stackoverflow.com 2009-12-02T06:25:14Z http://stackoverflow.com/feeds/question/135035 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/135035/python-library-path 4 Python Library Path Kyle Burton 2008-09-25T18:23:50Z 2008-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#135050 5 Answer by John Millikin for Python Library Path John Millikin 2008-09-25T18:25:07Z 2008-09-25T18:25:07Z <pre><code>import sys sys.path </code></pre> http://stackoverflow.com/questions/135035/python-library-path/135051#135051 8 Answer by Jack M. for Python Library Path Jack M. 2008-09-25T18:25:18Z 2008-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#135273 5 Answer by Andrew Gwozdziewycz for Python Library Path Andrew Gwozdziewycz 2008-09-25T19:02:46Z 2008-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>