摘要:服务器上版本过低,升级为,而未升级,导致在执行时报这个错误。报错报错解决方案查看版本,执行可以查看到存在两个版本的。将原有的改为老版本跳出再次执行,即可使用。解决方案方法一同,不建议。
原因:
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, inyum解决方案: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解决方案方法一:同yum,不建议。
方法二:
按照方法一修改后发现,再次使用pip安装的插件都在Python的老版本中,所以不建议使用第一种方案。
还有就是在自己的Python安装路径中,找到pip2.7文件[参考:/usr/local/Python-2.7.10/bin/pip2.7]。
然后到/usr/bin中,删除(最好先备份)原有pip,然后再用软连接指向上述路径
rm -rf /usr/bin/pip ln -s /usr/local/Python-2.7.10/bin/pip2.7 pip /usr/bin/pip
文章版权归作者所有,未经允许请勿转载,若此文章存在违规行为,您可以联系管理员删除。
转载请注明本文地址:https://www.ucloud.cn/yun/40803.html
摘要:当前最新的默认安装的是,并且默认的官方源中不提供的安装包。最近需要在机器上装,需要或,我这边通过源码编译的方式安装。 当前最新的 CentOS 7.3 默认安装的是 Python 2 ,并且默认的官方 yum 源中不提供 Python 3 的安装包。最近需要在机器上装awscli,需要python2.6.5+或python3.3+,python3我这边通过源码编译的方式安装。我的机器版...
摘要:服务器上部署项目说白了就是让你的项目在这台服务器上运行并且做到可以在公网上访问你的项目。可以解决项目与项目之间对同一个包的不同版本的依赖问题。有可能会报的错是项目相关模块的引入路径不对,修改一下便可。 前一阵自己用flask框架写了一个博客程序,写完之后想部署到服务器上,因为是小白,所以自己google了好些资料,讲的零零碎碎而且有些地方只是告诉你怎么配置,但具体为什么这样配却没有说明...
阅读 6759·2021-09-22 15:08
阅读 1825·2021-08-24 10:03
阅读 2402·2021-08-20 09:36
阅读 1271·2020-12-03 17:22
阅读 2449·2019-08-30 15:55
阅读 813·2019-08-29 16:13
阅读 3024·2019-08-29 12:41
阅读 3183·2019-08-26 12:12