博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
CentOS 6.4 安装RBTools 报错 ImportError: Entry point ('console_scripts', 'easy_install') not found...
阅读量:5903 次
发布时间:2019-06-19

本文共 1509 字,大约阅读时间需要 5 分钟。

本来是按照官网步骤安装的

1 sudo yum install python2 sudo yum install python-setuptools3 sudo easy_install -U setuptools4 sudo easy_install -U RBTools

 

可惜报错了

Traceback (most recent call last):  File "/usr/bin/easy_install", line 9, in 
load_entry_point('distribute', 'console_scripts', 'easy_install')() File "/usr/lib/python2.6/site-packages/setuptools-3.4.3-py2.6.egg/pkg_resources.py", line 351, in load_entry_point return get_distribution(dist).load_entry_point(group, name) File "/usr/lib/python2.6/site-packages/setuptools-3.4.3-py2.6.egg/pkg_resources.py", line 2362, in load_entry_point raise ImportError("Entry point %r not found" % ((group,name),))ImportError: Entry point ('console_scripts', 'easy_install') not found

 

去stackoverflow找了下原因

1.Check your /usr/bin and /usr/local/bin for easy_install installations and remove any old script:

1 sudo rm /usr/bin/easy_install*2 sudo rm /usr/local/bin/easy_install*

2.Download and run distribute:

1 curl -O http://python-distribute.org/distribute_setup.py2 sudo python distribute_setup.py3 sudo rm distribute_setup.py

3.Try again

sudo easy_install RBTools

有的人问题解决了,

但是我依然可耻的失败了.一样是python和easy_install版本不兼容的问题.

 

随后我决定破罐子破摔:

1.下载epel源 http://ftp.sjtu.edu.cn/fedora/epel/6/i386/repoview/epel-release.html

2.下载remi源 http://rpms.famillecollet.com/

rpm安装这两个源

之后

sudo yum install RBTools --enablerepo=remi

 

参考资料:http://stackoverflow.com/questions/6012246/why-is-python-easy-install-not-working-on-my-mac

 

转载于:https://www.cnblogs.com/rand7/p/3663706.html

你可能感兴趣的文章
配置ORACLE 11g绿色版客户端和PLSQL远程连接环境
查看>>
ASP.NET中 DataList(数据列表)的使用前台绑定
查看>>
Linux学习之CentOS(八)--Linux系统的分区概念
查看>>
System.Func<>与System.Action<>
查看>>
asp.net开源CMS推荐
查看>>
csharp skype send message in winform
查看>>
MMORPG 游戏服务器端设计--转载
查看>>
HDFS dfsclient写文件过程 源码分析
查看>>
ubuntu下安装libxml2
查看>>
nginx_lua_waf安装测试
查看>>
WinForm窗体缩放动画
查看>>
JQuery入门(2)
查看>>
linux文件描述符
查看>>
传值引用和调用引用的区别
查看>>
hyper-v 无线网连接
查看>>
Python3.7.1学习(六)RabbitMQ在Windows环境下的安装
查看>>
Windows下memcached的安装配置
查看>>
ubuntu: firefox+flashplay
查看>>
web.xml 中CharacterEncodingFilter类的学习
查看>>
贪吃蛇逻辑代码
查看>>