在学习的过程中,总是遇到系统上默认安装的 Python 版本是 2.7.5,而我们实际上要求在 Python3 的环境下去运行程序的。这个时候该如何升级?
- 下载新的版本
wget https://www.python.org/ftp/python/3.5.2/Python-3.5.2.tgz
- 解压缩
tar -zxvf Python-3.5.2.tgz
- 进入解压缩后的目录,安装配置:
cd Python-3.5.2/
./configure
- 执行 ./configure 时,如果报错:
configure: error: no acceptable C compiler found in $PATH
说明没有安装合适的编译器。这时,需要安装/升级 gcc 及其它依赖包。
# yum install make gcc gcc-c++
- 完成之后,重新执行:
./configure
make
make install
- 验证
python -v
python3 -v
- 安装 pip3
# 下载,CentOS系统直接下载pip3解决问题
yum install python3-pip
# 查看具体的版本
pip3 --version
上述是在云服务器上安装 Python3 的,在 MacOS 下面安装 Python3 很方便的
brew install python3