Mac修改默认python版本

流过昼夜 提交于 2020-03-10 11:31:08

 弄了一个mac pro 玩发现 Mac默认的python版本为2.7 自己安装了3.7的版本

修改 ~/.bash_profile 文件

查看python3安装路径

which python3

/Library/Frameworks/Python.framework/Versions/3.7/bin/python3.7

编辑~/.bash_profile

vi ~/.bash_profile按i进入编辑模式

添加PATH,alias

#add PATH
export PATH=${PATH}:/Library/Frameworks/Python.framework/Versions/3.7/bin

#alias python
alias python2='/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

#alias pip
alias pip='/Library/Frameworks/Python.framework/Versions/3.7/bin/pip3'

保存~/.bash_profile

esc退出编辑模式

:wq保存

生效~/.bash_profile

source ~/.bash_profile

 

 

 

 

修改 ~/.bash_profile 文件

查看python3安装路径

which python3

/Library/Frameworks/Python.framework/Versions/3.7/bin/python3.7

编辑~/.bash_profile

vi ~/.bash_profile按i进入编辑模式

添加PATH,alias

#add PATH
export PATH=${PATH}:/Library/Frameworks/Python.framework/Versions/3.7/bin

#alias python
alias python2='/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

#alias pip
alias pip='/Library/Frameworks/Python.framework/Versions/3.7/bin/pip3'

保存~/.bash_profile

esc退出编辑模式

:wq保存

生效~/.bash_profile

source ~/.bash_profile

 

 

 

 

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!