diff options
author | Ronald Oussoren <ronaldoussoren@mac.com> | 2009-03-30 23:10:35 (GMT) |
---|---|---|
committer | Ronald Oussoren <ronaldoussoren@mac.com> | 2009-03-30 23:10:35 (GMT) |
commit | e0154ed7ff9cf476d93cc20b49b69ca5d39cf41b (patch) | |
tree | 03e428336b3a64775d496c39ce8e039f4f789a81 /Lib/site.py | |
parent | 6c2633e919b2353341fd06407bfb4c0a993dcaeb (diff) | |
download | cpython-e0154ed7ff9cf476d93cc20b49b69ca5d39cf41b.zip cpython-e0154ed7ff9cf476d93cc20b49b69ca5d39cf41b.tar.gz cpython-e0154ed7ff9cf476d93cc20b49b69ca5d39cf41b.tar.bz2 |
Fix issue #4865: add /Library/Python/2.7/site-packages to
sys.path on OSX, to make it easier to share (some) installed
packages between the system install and a user install.
Diffstat (limited to 'Lib/site.py')
-rw-r--r-- | Lib/site.py | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/Lib/site.py b/Lib/site.py index 21c7db2..abe6687 100644 --- a/Lib/site.py +++ b/Lib/site.py @@ -275,13 +275,15 @@ def addsitepackages(known_paths): if sys.platform == "darwin": # for framework builds *only* we add the standard Apple - # locations. Currently only per-user, but /Library and - # /Network/Library could be added too + # locations. if 'Python.framework' in prefix: sitedirs.append( os.path.expanduser( os.path.join("~", "Library", "Python", sys.version[:3], "site-packages"))) + sitedirs.append( + os.path.join("/Library", "Python", + sys.version[:3], "site-packages")) for sitedir in sitedirs: if os.path.isdir(sitedir): |