Mac 笔记本电脑系统自带的Python版本一般是Python 2.7,如果安装了Python 3.x,在终端中输入python命令后,输出的信息还是Python 2.7,问题就是如何将Mac系统默认的Python版本由Python2.x改为Python3.x呢?
分为如下四个步骤:
1. 终端打开.bash_profile文件
open ~/.bash_profile
2. 修改.bash_profile文件内容 ,默认应该会有,如果没有PATH路径需要找到本机的路径设置
# Setting PATH for Python 3.5
# The original version is saved in .bash_profile.pysave
PATH="/Library/Frameworks/Python.framework/Versions/3.6/bin:${PATH}"
export PATH
3. 添加别名
alias python="/Library/Frameworks/Python.framework/Versions/3.6/bin/python3.6"
保存.bash_profile文件
4. 点击终端中重新读取.bash_profile文件
source .bash_profile
经过上面四个步骤后,在终端输入python命令,输出的版本信息就是Python3.6。
以上方法亲测有效。
网友评论