M1应该都是自带3.9,这里是新版的安装方式。
1、安装Homebrew
/bin/bash -c "$(curl -fsSL https://gitee.com/ineo6/homebrew-install/raw/master/install.sh)"
2、安装python3
brew install python3
安装路径都在这个文件夹
/opt/homebrew/bin
3、配置环境变量、路径别名
(1)配置bash_profile文件
sudo vim ~/.bash_profile
(2)在文件里输入下边的代码
alias pip=/opt/homebrew/bin/pip3
alias python=/opt/homebrew/bin/python3
(3)让文件生效
source ~/.bash_profile