PKGインストーラーを使用してインストールした場合、次のことができます。
pkgutil --pkgs
以上:
pkgutil --pkgs | grep org.python.Python
これは次のようなものを出力します:
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
リンクを解除(削除)するパッケージを選択できます。
これはリンク解除のドキュメントです:
--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.
私の例では、次のように入力します
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
または1行で:
pkgutil --pkgs | grep org.python.Python | xargs -L1 pkgutil -f --unlink
重要:--unlinkはLionから利用できなくなりました(2014年第1四半期には、Lion、Mountain Lion、Mavericksが含まれる予定です)。この手順に来た人がlionでそれを使用しようとする場合は、代わりに、この投稿が言っていることでそれを適応させるようにしてください:https : //wincent.com/wiki/Uninstalling_packages_(.pkg_files)_on_Mac_OS_X