2019-10-08:
python 2.7 升级到 3.7
安装 Python 3.7
1、下载地址如下:https://www.python.org/downloads/
2、点击下载好的pkg文件进行安装
3、安装完成之后,python 3.70的默认安装路径如下:/Library/Frameworks/Python.framework/Versions/3.7
修改profile文件
在terminal里运行open /.bash_profile,打开/.bash_profile,直接修改文件即可
如果没有这个文件就新建一个 touch .bash_profile
1、修改方式
添加:
alias python="/Library/Frameworks/Python.framework/Versions/3.7/bin/python3.7"
2、重启一下Terminal,使修改后的文件生效。
验证
终端输入:
python --version
Python 2.7与Python 3.7版本的切换
使用Python 2.7时,直接将~/.bash_profile文件中3.7的版本注释掉,即
#aliaspython="/Library/Frameworks/Python.framework/Versions/3.7/bin/python3.7"
使用Python 3.7时,直接将~/.bash_profile文件中3.7的版本打开,即
aliaspython="/Library/Frameworks/Python.framework/Versions/3.7/bin/python3.7"
现在是凌晨00:14,快一点钟了,不能“浪了”,早点睡,明天继续。今天一个demo没有跑起来。不过找到点感觉了~
网友评论