Open ShannonChenCHN opened 6 years ago
日期:2018.07.06 周五
Mac 上自带的 Python 是 2.7,为了不更改系统文件,可以使用 homebrew 另外安装 Python3,然后再设置别名,以保证命令行中的 python 命令调用的是新安装的 Python3 解释器。
python
安装 Python3
brew install python3
设置 shell 命令 python 的别名:
alias python="/usr/local/bin/python3.7"
日期:2018.07.06 周五
Mac 上自带的 Python 是 2.7,为了不更改系统文件,可以使用 homebrew 另外安装 Python3,然后再设置别名,以保证命令行中的
python
命令调用的是新安装的 Python3 解释器。安装 Python3
设置 shell 命令
python
的别名: