macOS自带Python2.7版本升级
程序员文章站
2023-12-28 11:57:16
...
macOS自带Python2.7版本升级
为什么要升级
Mac自带的2.7版本将于2020年停止支持
DEPRECATION: Python 2.7 will reach the end of its life on January 1st, 2020. Please upgrade your Python as Python 2.7 won’t be maintained after that date. A future version of pip will drop support for Python 2.7.
下载和安装
1、官网下载Python安装包
- 下载地址:https://www.python.org/downloads/
- 选择自己系统适合的pkg包下载,完成后点击安装
- 安装完成后,默认安装路径为:/Library/Frameworks/Python.framework/Versions/3.9
2、使用brew安装
- 安装brew
确保已经安装Xcode(或者Xcode命令行工具CommandLineTools)
- 安装Python3.x
brew search python
brew install python3.x
第一行命令查看并选择python版本,看好要安装的版本,再使用第二行命令安装即可。
查看Python版本
python -V
神奇的事情发生了,你发现你的py版本还是2.7,这是因为python默认多版本可共存机制,而macOS默认版本指向的是原装的2.7版本。
将3.x版本设置为默认版本
查看不同安装方式的3.x安装地址
来源 | python安装路径 |
---|---|
系统默认 | /System/Library/Frameworks/Python.framework/Versions/2.7 |
brew安装 | /usr/local/Cellar |
官网pkg安装 | /Library/Frameworks/Python.framework/Versions/2.7 |
修改profile文件
- 在terminal里运行
open ~/.bash_profile
打开~/.bash_profile - 修改文件
# Setting PATH for Python 3.9
# The original version is saved in .bash_profile.pysave
PATH="/usr/local/Cellar/[email protected]/3.9.4/bin:${PATH}"
export PATH
alias python="/usr/local/Cellar/[email protected]/3.9.4/bin/python3.9"
【一般情况下,在安装py3.x版本后系统会自动生成bash_profile文件,但是我在修改bash_profile文件时,发现并没有bash_profile文件存在,于是touch了一个新的文件,并进行了修改后续操作】
-
source .bash_profile
更新文件
**【经过一番折腾】**重新查看Python版本,发现版本已更新
推荐阅读
-
macOS自带Python2.7版本升级
-
Ubuntu18.04直接安装python3.7或者升级自带的python3.6版本之后导致终端无法打开的解决办法
-
Centos5.x下升级python到python2.7版本教程
-
MacOS配置Anaconda3(Miniconda3)下Python3.6、Python3.7和Python2.7环境和基础机器学习、神经网络相关包详解(版本号对应)
-
Ubuntu18.04直接安装python3.7或者升级自带的python3.6版本之后导致终端无法打开的解决办法
-
Centos5.x下升级python到python2.7版本教程
-
Centos5.x下升级python到python2.7版本教程
-
MacOS配置Anaconda3(Miniconda3)下Python3.6、Python3.7和Python2.7环境和基础机器学习、神经网络相关包详解(版本号对应)
-
Centos5.x下升级python到python2.7版本教程
-
如何将centos 7系统自带的php 5.4升级为5.6版本?