安装Python3.X版本
因为系统自带了Python2.7,所以我们首先需要安装Python3.X版本。
安装教程:《Mac版Python3安装/升级》
Python版本切换
路径
首先我们来看2个版本的安装路径:
Python2.7:
/System/Library/Frameworks/Python.framework/Versions/2.7/bin/python2.7
Python3.X:
/usr/local/bin/python3
切换步骤
1. 编辑.bash_profile或.zshrc文件
编辑.bash_profile或.zshrc文件(根据系统使用的shell工具选择相应的配置文件)
$ vi ~/.zshrc
2. 配置别名,进行切换
这里我想使用2.7版本:
# alias python="/usr/local/bin/python3"
alias python="/System/Library/Frameworks/Python.framework/Versions/2.7/bin/python2.7"