1. 查看python版本
shell
python3 -V
2. 更新python版本
shell
brew upgrade python
3. 查看python3的路径:
shell
which python3
4. 修改.bash_profile文件
shell
vim ~/.bash_profile
- 插入python默认执行文件
shell
alias python="/usr/local/bin/python3"
5. 应用环境变量
shell
source ~/.bash_profile
- 使用种方式更新python的同时会更新pip的版本