因为mac自带的python是python2,有的时候用python执行命令的时候老是需要打python3 xxx.py,操作起来很是麻烦。接下来给大家带来如何把默认的python指令默认指向python3(其实就是换了个别名)
1.查看当前电脑python版本
python -V // 显示2.7.x
2.用brew升级python
brew update python
3.如果安装成功,去系统目录下回看到两个版本的python
which python
which python3
4.将python指向python3 (主要修改 ~/.bash_profile文件 和 ~/.bashrc文件)
(1)修改 .bash_profile文件
vi ~/.bash_profile //编辑bash_profile
# Setting PATH for Python 3.7
# The orginal version is saved in .bash_profile.pysave
PATH="/Library/Frameworks/Python.framework/Versions/3.7/bin:${PATH}"
export PATH //增加这几行内容(如果不是通过brew,而是通过官网下载安装,这里会默认已经添加了,就退出不用修改了)
按esc键 然后敲入 :wq 进行退出
(2)修改 bashrc文件
sudo vi ~/.bashrc //mac下需要管理员才能修改此文件
alias python2='/System/Library/Frameworks/Python.framework/Versions/2.7/bin/python2.7'
alias python3='/Library/Frameworks/Python.framework/Versions/3.7/bin/python3.7'
alias python=python3 //添加以上三行;如果不知道自己的python3安装路径,可以用 which python3 命令进行查看路径
按esc键 然后敲入 :wq 进行退出
(3)使得修改的 bash_profile文件 和 bashrc文件 生效
source ~/.bash_profile
source ~/.bashrc
(4)然后查看当前python版本,
python -V
(5)备注:如果想再改回去,把 bashrc里的 python指向python2,然后保存,使其生效即可。