centos6.6中如何安装yum

centos6.6中如何安装yum

我使用的是centOS 6.6:

[root@localhost ~]# cat /etc/centos-release
CentOS release 6.6 (Final)

我需要操作系统版本更新。但此时出现了如下错误:

[root@localhost ~]# yum update
bash: /usr/bin/yum: No such file or directory

我执行以下命令:

[root@localhost ~]# pip install yum 

但是,没有成功。错误是:

ERROR: Could not find a version that satisfies the requirement yum (from versions: none)
ERROR: No matching distribution found for yum

我的 python 和 pip 版本 2.7。并检查版本 3.6 和 2.6。

我应该怎么办?

答案1

好像yum没有安装...尝试下载 rpm 并安装它。

  • 下载对于 X64 或对于 32 位

  • 使用命令安装rpm -i <yumPackageName>.rpm

  • 并将python指向2.6

    sudo rm -rf /usr/bin/python

    sudo ln -s /usr/bin/python2.6 /usr/bin/python

相关内容