ShannonChenCHN / APythonTour

Yes, beautiful is better than ugly.
MIT License
0 stars 2 forks source link

问题:如何升级 Mac 上的 Python #1

Open ShannonChenCHN opened 6 years ago

ShannonChenCHN commented 6 years ago

日期:2018.07.06 周五

Mac 上自带的 Python 是 2.7,为了不更改系统文件,可以使用 homebrew 另外安装 Python3,然后再设置别名,以保证命令行中的 python 命令调用的是新安装的 Python3 解释器。

安装 Python3

brew install python3

设置 shell 命令 python 的别名:

alias python="/usr/local/bin/python3.7"