I want to completely remove Python 2.7 from my Mac OS X 10.6.4. I managed to remove the entry from the PATH variable by reverting my .bash_profile. But I also want to remove all directories, files, symlinks, and entries that got installed by the Python 2.7 install package. I've got the install package from http://www.python.org/. What directories/files/configuration file entries do I need to remove? Is there a list somewhere?

link|improve this question

For many open-source project, I highly recommend using MacPorts to install them. It allows you to update and remove them easily. There is also Homebrew but it is less mature (IMO). – Zenon Apr 5 at 0:42
feedback

3 Answers

up vote 34 down vote accepted

The complete list is documented here. But, basically, all you need to do is to:

  1. remove the Python 2.7 framework

    sudo rm -rf /Library/Frameworks/Python.framework/Versions/2.7

  2. remove the Python 2.7 applications directory

    sudo rm -rf "/Applications/Python 2.7"

  3. remove the symbolic links in /usr/local/bin

link|improve this answer
2  
Which symbolic links should be deleted from /usr/local/bin? – Kit Mar 24 '11 at 13:42
3  
The ones that point back to the 2.7 framework: ls -l /usr/local/bin | grep '../Library/Frameworks/Python.framework/Versions/2.7' – Ned Deily Mar 24 '11 at 18:02
ls -l /usr/local/bin | grep '../Library/Frameworks/Python.framework/Versions/2.7' | xargs rm – Vaibhav Bajpai Feb 20 at 17:04
feedback

This one works:

cd /usr/local/bin; 
ls -l . | grep '../Library/Frameworks/Python.framework/Versions/2.7' | awk '{print $9}' | xargs rm
link|improve this answer
feedback

Aren't there other things such as a bunch of files in /Library/Python, and the pip packages that you may have installed?

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.