#获取tarbal wget https://www.python.org/ftp/python/3.10.4/Python-3.10.4.tgz #解压 tar -xvf Python-3.10.4.tgz #安装openssl1.1.1,python3.10需要openssl1.1.1版本以上 yum install -y epel-release yum install -y openssl11 openssl11-devel ln -sf /usr/lib64/pkgconfig/openssl11.pc /usr/lib64/pkgconfig/openssl.pc #安装依赖 yum install zlib-devel bzip2-devel openssl openssl-devel ncurses-devel sqlite-devel readline-devel tk-devel gcc make readline libffi-devel -y #编译安装 cd Python-3.10.4 ./configure --prefix=/usr/local/python3.10.4 make make install #命令创建软连接 ln -s /usr/local/python3.10.4/bin/python3 /usr/bin/python3 ln -s /usr/local/python3.10.4/bin/pip3 /usr/bin/pip3 #版本查看 python3 -V pip3 -V



