shirley0lhz 2020-02-14
一、epel 源安装
首先安装epel源:
yum install epel-release
在有epel源的情况下查询yum的python3状况:
Repository epel is listed more than once in the configuration abrt-addon-python3.noarch 2.1.11-50.el7 epel boost-python36.x86_64 1.53.0-30.el7 epel boost-python36-devel.x86_64 1.53.0-30.el7 epel boost-python36-static.x86_64 1.53.0-30.el7 epel boost169-mpich-python3.x86_64 1.69.0-2.el7 epel boost169-mpich-python3-devel.x86_64 1.69.0-2.el7 epel
从上面可以看出我们可以安装 python3
,python34
,python36
。那么我以安装python36为例子,下面是安装python36和其对应pip的脚本:
yum install python36 python36-pip
安装好之后就可以直接使用,运行 python3
或者 python36
或者 python3.6
命令即可,库安装则使用的是 pip3
或者 pip3.6
命令。