Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save deyanm/808986e7cee20eefe7d887a8aeabc8ce to your computer and use it in GitHub Desktop.
Save deyanm/808986e7cee20eefe7d887a8aeabc8ce to your computer and use it in GitHub Desktop.
remove python 2.7 on mac osx if installed via python.org installer .dmg
# sudo rm -rf /Library/Frameworks/Python.framework
sudo rm -rf /Library/Frameworks/Python.framework/Versions/2.7
sudo rm -rf "/Applications/Python 2.7"
cd /usr/local/bin && \
sudo ls -l /usr/local/bin | grep '../Library/Frameworks/Python.framework/Versions/2.7' | awk '{print $9}' | xargs rm
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment