CentOS中输入yum报错:sudo: unable to execute /bin/yum: No such file or directory

前端之家收集整理的这篇文章主要介绍了CentOS中输入yum报错:sudo: unable to execute /bin/yum: No such file or directory前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。

原文:点击打开链接

今天尝试更新了下虚拟机CentOS中的python版本后。

运行“yum”命令,就报错:“sudo: unable to execute /bin/yum: No such file or directory”

查询了下网上的资料发现,原来yum调用是用python写的。遂想起刚刚更新python版本,忘了修改yum配置文件了。

解决办法:修改yum配置文件

1
[root@localhost ~] #vim /usr/bin/yum

文件头部的#!/usr/bin/python改成#!/usr/bin/python_old //改为之前的老版本号 。

保存退出,yum即可正常使用。

如若有其他命令、软件不能正常使用,仿照yum配置文件修改方法修改配置文件即可。

原文链接:https://www.f2er.com/centos/376511.html

猜你在找的CentOS相关文章