我想从我的Mac OS X 10.6.4中完全删除Python 2.7。通过恢复.bash_profile,我成功地从PATH变量中删除了条目。但我还想删除Python 2.7安装包安装的所有目录、文件、符号链接和条目。我从http://www.python.org/上得到了安装包。我需要删除哪些目录/文件/配置文件条目?哪里有名单吗?


当前回答

使用。安装新的python版本 编译安装python 在.bash_profile或.zprofile中创建别名,如下所示: 别名python = " / usr /地方/ bin / python3” 完成了。

其他回答

关于删除符号链接,我发现这很有用。

find /usr/local/bin -lname '../../../Library/Frameworks/Python.framework/Versions/2.7/*' -delete

这是我在Mac OS上使用的方法

下载最新的Python 3。X来自https://www.python.org/downloads/mac-osx/ 安装Python 3。当你点击安装程序时,会出现安装步骤 Ln -s -f /usr/local/bin/python3.9 /usr/local/bin/python Ln -s -f /usr/local/bin/pip3 /usr/local/bin/pip 打开一个新的终端窗口并验证python——version。应该是3.x

对于第3步,通过检查哪个python的输出,确认现有python可执行文件的路径

试图卸载Python

brew uninstall python

将不会删除本机安装的Python,而是删除使用brew安装的Python版本。

尝试删除某些python库时要小心,Mac OS需要python! 不要删除以下文件夹中的任何Python版本:

/usr/bin
system/Library

这些Python 2.7版本由Apple安装,并用于Mac OS和其他软件。从这些目录中删除Python可能会破坏系统。

如果您使用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

或者只用一行:

pkgutil --pkgs | grep org.python.Python | xargs -L1 pkgutil -f --unlink

重要提示:—以Lion开头的unlink不再可用(截至2014年第一季度,包括Lion, Mountain Lion和Mavericks)。如果有人看到这个说明试图用lion来使用它,应该尝试用这篇文章说的来适应它:https://wincent.com/wiki/Uninstalling_packages_(.pkg_files)_on_Mac_OS_X