您好,欢迎访问一九零五行业门户网

解决Python升级导致yum、pip报错的方法

这篇文章主要给大家介绍了因为python升级导致yum、pip报错的解决方法,文中通过示例代码将解决的方法介绍的非常详细,对大家的学习或者工作具有一定的参考学习价值,需要的朋友们下面随着小编来一起学习学习下吧。
前言
本文主要给大家介绍了因python升级导致yum、pip报错的解放方法,分享出来供大家参考学习,下面话不多说了,来一起看看详细的介绍吧。
原因:
yum是python写的。服务器上python版本过低,升级为2.7,而yum/pip未升级,导致在执行yum/pip时报这个错误。
yum报错:
there was a problem importing one of the python modules required to run yum. the error leading to this problem was: no module named yum please install a package which provides this module, or verify that the module is installed correctly. it's possible that the above module doesn't match the current version of python, which is: 2.7.10 (default, sep 5 2017, 17:35:43) [gcc 4.4.7 20120313 (red hat 4.4.7-3)] if you cannot solve this problem yourself, please go to the yum faq at: http://yum.baseurl.org/wiki/faq
pip报错:
traceback (most recent call last): file "/usr/bin/pip2", line 5, in <module> from pkg_resources import load_entry_point importerror: no module named pkg_resources
解决方案:
1、查看python版本,执行:
which python
可以查看到存在两个版本的python。
2、查看yum文件,执行:
vim /usr/bin/yum
可以在文件的第一行,看到yum的python引用。将原有的 #!/usr/bin/python 改为 #!/usr/bin/python2.6(老版本)
3、跳出再次执行yum,即可使用。
pip同理修改
以上就是解决python升级导致yum、pip报错的方法的详细内容。
其它类似信息

推荐信息