Mac 安装Python3.7.x 并设置为默认版本 | wniu

Mac 安装Python3.7.x 并设置为默认版本

因Mac自带Python版本是2.7 手动升级并配置默认

选择brew 安装python3

$ brew install python3

安装好之后 查看python安装目录

$ which python3

配置python的外部环境变量

$ vi ~/.bash_profile

新增

1
2
3
4
5
6
# Setting PATH for Python 3.7
# The original version is saved in .bash_profile.pysave
PATH="/Library/Frameworks/Python.framework/Versions/3.7/bin:${PATH}"
export PATH

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

修改完成后执行命令

$ source ~/.bash_profile

重新打开新的命令行窗口 运行 python –version

收工~

0%