在macOS上用Homebrew安装python3

1、安装Homebrew

homebrew依赖于Apple包Xcode
在终端输入:
xcode-select --install
一直确定等待完成安装

接下来安装Homebrew

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

通过ruby执行代码

检查是否安装成功:

brew doctor

但下面显示的警告未知,待解决

安装python3:

brew install python3
检查安装是否成功:
python3 --version

你可能感兴趣的:(在macOS上用Homebrew安装python3)