Mac更换Python默认版本

查看版本号

python --version #命令 查看已安装版本号

下载最新版本Python

python官方网

修改配置文件

打开配置文件open ~/.bash_profile

假设你要跟换的Python安装在/Library/Frameworks/Python.framework/Versions目录下,这个目录可以从Finder 前往 前往文件夹中能找到的,并且能看到版本号,比如3.8。
下面可以按照对应的文件路径进行修改:

# Setting PATH for Python 3.8
# The original version is saved in .bash_profile.pysave
PATH="/Library/Frameworks/Python.framework/Versions/3.8/bin:${PATH}"
export PATH 
alias python="/Library/Frameworks/Python.framework/Versions/3.8/bin/python3.8"

执行配置文件

source ~/.bash_profile

最后输出python

python --version

你可能感兴趣的:(Mac更换Python默认版本)