mac默认python版本为2.7,现将默认版本变更为3.7
-
在终端中执行
which python
获取python3的安装路径
比如我的python3安装路径为:
/usr/local/Cellar/python/3.7.7/bin/python3
-
在终端中执行
open ~/.bash_profile
,打开.bash_profile文件,添加export PATH=${PATH}:/usr/local/Cellar/python/3.7.7/bin alias python="/usr/local/Cellar/python/3.7.7/bin/python3"
请对应替换自己电脑的python3安装路径
-
关闭文件,在终端中执行
source .bash_profile
,重新读取.bash_profile文件 -
再次在终端中执行python,默认版本已更改为3.7