mac如何卸载python2

python

对于删除 Python,我们首先要知道其具体都安装了什么,实际上,在安装 Python 时,其自动生成:

    ·Python framework,即 Python 框架;

    ·Python 应用目录;

    ·指向 Python 的连接。

对于 Mac 自带的 Python,其框架目录为:

System/Library/Frameworks/Python.framework

而我们安装的 Python,其(默认)框架目录为:

/Library/Frameworks/Python.framework

接下来,我们就分别(在 Mac 终端进行)删除上面所提到的三部分。

第1步,删除框架:

sudo rm -rf /Library/Frameworks/Python.framework/Versions/x.x

第2步,删除应用目录:

sudo rm -rf "/Applications/Python x.x"

第3步,删除指向 Python 的连接:

cd /usr/local/bin/

ls -l /usr/local/bin | grep '../Library/Frameworks/Python.framework/Versions/x.x' | awk '{print $9}' | tr -d @ | 

xargs rm

修改profile

vim .bash_profile

Setting PATH for Python 2.7

The original version is saved in .bash_profile.pysave

PATH="/Library/Frameworks/Python.framework/Versions/2.7/bin:${PATH}"

export PATH

source .bash_profile

至此,我们已经成功删除 Python 的相关文件,其中x.x为 Python 的版本号。

众多python教程,尽在网,欢迎在线学习!

以上是 mac如何卸载python2 的全部内容, 来源链接: utcz.com/z/525353.html

回到顶部