Se lo hai installato usando il programma di installazione PKG, puoi fare:
pkgutil --pkgs
o meglio:
pkgutil --pkgs | grep org.python.Python
che produrrà qualcosa di simile:
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
ora puoi selezionare quali pacchetti scollegare (rimuovere).
Questa è la documentazione scollegata:
--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.
Nel mio esempio digiterai
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
o in una sola riga:
pkgutil --pkgs | grep org.python.Python | xargs -L1 pkgutil -f --unlink
Importante: --unlink non è più disponibile a partire da Lion (a partire da Q1`2014 che includerebbe Lion, Mountain Lion e Mavericks). Se qualcuno che arriva a queste istruzioni prova a usarlo con Lion, dovrebbe invece provare ad adattarlo con quello che dice questo post: https://wincent.com/wiki/Uninstalling_packages_(.pkg_files)_on_Mac_OS_X