【centos7之yum混乱错误】-bash: /usr/bin/yum: /usr/bin/python: bad interpreter: No such file or directory

yum是依赖Python2,而不支持Python3,所以当你升级Python3之后,系统也会保留Python2,所以需要修改yum文件的Python版本

[root@test ~]# vim $(which yum)
#!/usr/bin/python  修改为系统的python path  例如:#!/usr/bin/python2 
import sys
try:
    import yum
except ImportError:
    print >> sys.stderr, """\

 

参考解决方法:https://blog.csdn.net/u012998306/article/details/88284782

解决办法:https://blog.51cto.com/welcomeweb/2132654

你可能感兴趣的:(centos7)