首先说一下,mac本身已经安装了python2,小编默认的是python2.7.10,所以不需要再安装python2了。接下来我们在不卸载python2的基础上安装python3.
其实呢也非常的简单,只需要安装一个Homebrew套件管理工具就可以了。安装也很简单,就是下载的很慢,可能会安装失败,

/bin/zsh -c "$(curl -fsSL https://gitee.com/cunkai/HomebrewCN/raw/master/Homebrew.sh)"

或者更换下国内的源,这两个命令执行一个就可以:

ruby-e"$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/master/install)" 

安装之后此时一下:brew doctor,如果出现Your system is ready to brew.就代表安装成功了。

然后我们安装python3

brew install python3

安装之后:
采用终端运行:

python //将运行默认的2.7版本
python3 //将运行新安装的3.x版本

安装第三方包:

pip //将安装默认的2.7版本的包
pip3 //将安装3.x版本的包
Last modification:May 15, 2020
If you think my article is useful to you, please feel free to appreciate