Popular recipes tagged "sys_path" but not "add"http://code.activestate.com/recipes/tags/sys_path-add/2012-02-16T23:15:11-08:00ActiveState Code RecipesA Script that Adds a Directory to sys.path Permanently (Python)
2012-02-16T23:15:11-08:00Eric Snowhttp://code.activestate.com/recipes/users/4177816/http://code.activestate.com/recipes/578043-a-script-that-adds-a-directory-to-syspath-permanen/
<p style="color: grey">
Python
recipe 578043
by <a href="/recipes/users/4177816/">Eric Snow</a>
(<a href="/recipes/tags/script/">script</a>, <a href="/recipes/tags/sys_path/">sys_path</a>).
</p>
<p>This script takes advantage of PEP 370, "Per user site-packages directory". It manages .pth files, which are are non-volatile (unlike manually adding to sys.path). See <a href="http://docs.python.org/library/site.html." rel="nofollow">http://docs.python.org/library/site.html.</a></p>