如何在 CentOs 7 中安装 Python 2.6?
How can I Install Python 2.6 in CentOs 7?
我尝试在 CentOs 7 中安装 Python 2.6
sudo yum install python26
但是,出现以下错误。
Loaded plugins: fastestmirror, langpacks Loading mirror speeds from
cached hostfile * base: centos.excellmedia.net * epel:
kartolo.sby.datautama.net.id * extras: centos.excellmedia.net *
updates: centos.excellmedia.net No package python26 available. Error:
Nothing to do
我也在CentOS 7安装了epel-release(sudo yum install epel-release),但是还是没有解决这个错误。请帮助我。
您需要先使用以下命令安装 RPM:
rpm -Uvh https://archive.fedoraproject.org/pub/archive/epel/5/x86_64/python26-2.6.8-2.el5.x86_64.rpm
然后就可以安装了:
sudo yum install python26
请注意,最新版本的 EPEL 不再支持 python26
,因此您必须从存档中安装它。
我尝试在 CentOs 7 中安装 Python 2.6
sudo yum install python26
但是,出现以下错误。
Loaded plugins: fastestmirror, langpacks Loading mirror speeds from cached hostfile * base: centos.excellmedia.net * epel: kartolo.sby.datautama.net.id * extras: centos.excellmedia.net * updates: centos.excellmedia.net No package python26 available. Error: Nothing to do
我也在CentOS 7安装了epel-release(sudo yum install epel-release),但是还是没有解决这个错误。请帮助我。
您需要先使用以下命令安装 RPM:
rpm -Uvh https://archive.fedoraproject.org/pub/archive/epel/5/x86_64/python26-2.6.8-2.el5.x86_64.rpm
然后就可以安装了:
sudo yum install python26
请注意,最新版本的 EPEL 不再支持 python26
,因此您必须从存档中安装它。