Nếu bạn đã cài đặt nó bằng trình cài đặt PKG, bạn có thể làm:
pkgutil --pkgs
hoặc tốt hơn:
pkgutil --pkgs | grep org.python.Python
sẽ xuất ra một cái gì đó như:
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
bây giờ bạn có thể chọn gói nào bạn sẽ hủy liên kết (loại bỏ).
Đây là tài liệu bỏ liên kết:
--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.
Trong ví dụ của tôi, bạn sẽ gõ
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
hoặc trong một dòng duy nhất:
pkgutil --pkgs | grep org.python.Python | xargs -L1 pkgutil -f --unlink
Quan trọng: --unlink không khả dụng nữa bắt đầu với Lion (kể từ Q1'2014 sẽ bao gồm Lion, Mountain Lion và Mavericks). Nếu bất kỳ ai đến với hướng dẫn này đều cố gắng sử dụng nó với sư tử, thay vào đó, hãy thử điều chỉnh nó với những gì bài đăng này đang nói: https://wincent.com/wiki/Uninstalling_packages_(.pkg_files)_on_Mac_OS_X