Python

下载

可以到Python官网根据自己的系统,按照需要下载Python各个版本的安装包,官网下载地址: Python安装包下载地址open in new window

因为我的环境是Centos,所以我这里下载了当前的稳定的source版本:Python 3.9.15open in new window

安装

首先解压压缩包

tar -xvf Python-3.9.15.tgz

安装依赖

# 针对 ContOS 7 & 8
sudo yum install openssl-devel libffi-devel bzip2-devel sqlite-devel -y

从源文件编译安装

cd Python-3.9.15

./configure

make install

安装完成后,通过下面命令验证python3.9安装成功:

# python3 -V
Python 3.9.15
Last Updated:
Contributors: 小5