Skip to content

Instantly share code, notes, and snippets.

@autosquid
Created September 1, 2015 08:22
Show Gist options
  • Save autosquid/17e3364bae2a28b64b66 to your computer and use it in GitHub Desktop.
Save autosquid/17e3364bae2a28b64b66 to your computer and use it in GitHub Desktop.
update osx system python
#!/bin/bash
cd /System/Library/Frameworks/Python.framework/Versions
mv 2.7 2.7.bk
mv /usr/local/Cellar/python/2.7.10_2/Frameworks/Python.framework/Versions/2.7 /System/Library/Frameworks/Python.framework/Versions
chown -R root:wheel /System/Library/Frameworks/Python.framework/Versions/2.7
rm /System/Library/Frameworks/Python.framework/Versions/Current
ln -s /System/Library/Frameworks/Python.framework/Versions/2.7 /System/Library/Frameworks/Python.framework/Versions/Current
rm /usr/bin/pydoc
rm /usr/bin/python
rm /usr/bin/pythonw
rm /usr/bin/python-config
ln -s /System/Library/Frameworks/Python.framework/Versions/2.7/bin/pydoc /usr/bin/pydoc
ln -s /System/Library/Frameworks/Python.framework/Versions/2.7/bin/python /usr/bin/python
ln -s /System/Library/Frameworks/Python.framework/Versions/2.7/bin/pythonw /usr/bin/pythonw
ln -s /System/Library/Frameworks/Python.framework/Versions/2.7/bin/python-config /usr/bin/python-config
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment