由于MacOS上的VScode默认安装的Python版本是2.7,所以需要我们自己手动安装Python3
安装Homebrew
到Homebrew网站获取命令行,👇这行是我获取到的:
/usr/bin/ruby -e "$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/master/install)"
复制命令行到VScode终端执行,如果报错显示curl: (7) Failed to connect to raw.githubusercontent.com port 443: Connection refused
就多执行几遍,因为https://raw.githubusercontent.com/Homebrew/install/master/install这个链接时而能访问时而又不能,所以可以先多试试这个链接
安装中途会让输入Password,输入系统登录密码即可
安装会需要点时间,显示==> Installation successful!
表示安装成功了
安装Python3
安装好Homebrew后我们可以使用brew命令来安装Python3了
cd /usr/local/bin/
brew install python3