mac系统虽然默认打开的是python2,但是也默认自带了python3,只要在终端用命令
python3
就会打开python3
下面讲的是用brew安装最新的python3
brew install python3
可以看到python3的实际安装目录是/usr/local/Cellar/python@3.9/3.9.12
打开配置文件并写入python的外部环境变量
open ~/.bash_profile
然后写入:
export PATH=${PATH}:/usr/local/Cellar/python@3.9/3.9.12/bin
alias python="/usr/local/Cellar/python@3.9/3.9.12/bin/python3.9"
最后让文件生效:
source ~/.bash_profile
使用python命令查看
python -V
显示为: Python 3.9.12