我正尝试使用以下教程在Linux服务器(Red Hat Enterprise Linux server 5.5版)上安装GitLab community版本。
Installing GitLab on RedHat Enterprise 5 RHEL 5
但是当我试图按照教程安装python26时,出现了以下错误。
# yum install python26
Loaded plugins: rhnplugin, security
This system is not registered with RHN.
RHN support will be disabled.
Setting up Install Process
No package python26 available.
Nothing to do
我对Ubuntu有一些经验,但我对Red Hat还不熟悉。有人知道怎么解决这个问题吗?
最佳答案
由于您没有向RHN注册,因此可以使用备用存储库来安装此软件包。其中一个这样的存储库是geekymedia.com centos repository。
要将存储库添加到系统中,
cd /etc/yum.repos.d
wget http://mirrors.geekymedia.com/centos/geekymedia.repo
要安装python26包,
yum install python26
unlink /usr/bin/python2
cd /usr/bin/
ln -s python26 python2