Se você o instalou usando o instalador do PKG, poderá:
pkgutil --pkgs
ou melhor:
pkgutil --pkgs | grep org.python.Python
que produzirá algo como:
org.python.Python.PythonApplications-2.7
org.python.Python.PythonDocumentation-2.7
org.python.Python.PythonFramework-2.7
org.python.Python.PythonProfileChanges-2.7
org.python.Python.PythonUnixTools-2.7
agora você pode selecionar quais pacotes desvinculará (remover).
Esta é a documentação para desvincular:
--unlink package-id
Unlinks (removes) each file referenced by package-id. WARNING: This command makes no attempt to perform reference counting or dependency analy-
sis. It can easily remove files required by your system. It may include unexpected files due to package tainting. Use the --files command first
to double check.
No meu exemplo você digitará
pkgutil --unlink org.python.Python.PythonApplications-2.7
pkgutil --unlink org.python.Python.PythonDocumentation-2.7
pkgutil --unlink org.python.Python.PythonFramework-2.7
pkgutil --unlink org.python.Python.PythonProfileChanges-2.7
pkgutil --unlink org.python.Python.PythonUnixTools-2.7
ou em uma única linha:
pkgutil --pkgs | grep org.python.Python | xargs -L1 pkgutil -f --unlink
Importante: --unlink não está mais disponível a partir do Lion (a partir do primeiro trimestre de 2014 que incluiria Lion, Mountain Lion e Mavericks). Se alguém que segue estas instruções tentar usá-lo com o lion, tente adaptá-lo ao que esta postagem está dizendo: https://wincent.com/wiki/Uninstalling_packages_(.pkg_files)_on_Mac_OS_X