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?
|
The complete list is documented here. But, basically, all you need to do is to:
|
|||||||||||||||||
|
|
This one works:
|
||||
|
|
If you installed it using the PKG installer, you can do:
or better:
which will output something like:
you can now select which packages you will unlink (remove). This is the unlink documentation:
In my example you will type
or in one single line:
Important: --unlink is not available on Lion anymore. If anyone that comes to this instructions try to use it with lion, should try instead to adapt it with what this post is saying: https://wincent.com/wiki/Uninstalling_packages_(.pkg_files)_on_Mac_OS_X |
||||
|
|
apt-get remove python. Oh, wait. – Felix Jan 24 at 10:16