mac设置python3为默认

首先获得python3安装路径,执行命令:

which python3

以我这台电脑为例,路径为:/Library/Frameworks/Python.framework/Versions/3.8/bin/python3

然后用 vim 打开文件

vi ~/.bash_profile

在insert模式(按i)将python3 路径写入:

alias python="/Library/Frameworks/Python.framework/Versions/3.8/bin/python3"

esc, 然后‘:’底线命令模式, 输入 'wq!'

在命令行输入:

source ~/.bash_profile

再次输入 python, 启动的应该就是 python3, 退出或者重启后都不会有改变。

你可能感兴趣的:(mac设置python3为默认)