Mac修改默认Python版本
1.安装Python 3
brew search python
brew install python@3.8 (指定版本号)
2.查看Python3 安装路径
打开终端,输入
which python3
,查看路径 /Library/Frameworks/Python.framework/Versions/3.7/bin/python3
3.打开配置文件
open ~/.bash_profile
4.写入外部环境变量(路径用第2步查看到的)
export PATH=${PATH}:/Library/Frameworks/Python.framework/Versions/3.7/bin/python3
5.重命名Python
alias python="/Library/Frameworks/Python.framework/Versions/3.7/bin/python3"
6.关闭文件(直接关闭就可以)
7.终端执行命令:
source ~/.bash_profile
如果报错:no such file or directory : /User/XX/.profile
执行命令:
1) touch ~/.profile
2) open ~/.profile
3)写入 exprot PATH=/user/local/bin:/user/bin:/user/sbin:/sbin
4) 再执行 source ~/.bash_profile
8.终端执行命令: python检查Python版本
python -V