如何在 Linux CentOS 服务器上通过 yum 安装 easy_install

如何在 Linux CentOS 服务器上通过 yum 安装 easy_install

请告诉我如何在 Linux CentOS 服务器上通过 yum 安装 easy_install

我在面板命令中心尝试过

yum install python-setuptools

输出....

  • epel:mirrors.tummy.com * base:mirrors.tummy.com * updates:centos.mirrors.tds.net * addons:mirror.fdcservers.net * extras:mirrors.gigenet.com 由于存储库保护,排除了 0 个软件包 设置安装过程 解析软件包安装参数 解决依赖关系 --> 正在运行事务检查 ---> 软件包 python-setuptools.noarch 0:0.6c9-5 设置为更新 --> 处理依赖项:/usr/bin/python26 用于软件包:python-setuptools --> 正在运行事务检查 ---> 软件包 python26.i386 0:2.6.5-6.el5 设置为更新 --> 处理依赖项:libpython2.6.so.1.0 用于软件包:python26 --> 处理依赖项:libffi.so.5 用于软件包:python26 --> 正在运行事务检查 ---> 软件包 python26-libs.i386 0:2.6.5-6.el5设置为更新 ---> 软件包 libffi.i386 0:3.0.5-1.el5 设置为更新 --> 完成依赖关系解析

依赖关系已解决

=================================================================================== 软件包 Arch
版本 存储库
大小 ============================================================================================================== 安装: python-setuptools
noarch 0.6c9-5
chl 357 k 正在安装依赖项: libffi
i386 3.0.5-1.el5
epel 21 k python26
i386 2.6.5-6.el5
epel 6.5 M python26-libs
i386 2.6.5-6.el5
epel 667 k

交易摘要 ==================================================================================== 安装 4 个软件包
更新 0 个软件包
删除 0 个软件包

总下载大小:7.5 M 这样可以吗 [y/N]:退出用户命令完成!

当我运行此命令时

easy_install html5lib

然后我得到错误

sh:easy_install:未找到命令

所以请帮我安装 easy_install 命令我使用的是 centos 5 32bit

答案1

您显示的输出似乎暗示您退出了下载和安装,但实际上并未这样做。尝试yum install -y python-setuptools完成安装,然后尝试 easy_install 命令。

答案2

禁用“chl”存储库并重试。它位于基础存储库中。

答案3

我试过

yum install -y python-setuptools

但仍然没有安装

  Loaded plugins: fastestmirror, protectbase
Loading mirror speeds from cached hostfile
 * base: mirror.sanctuaryhost.com
 * updates: mirror.fdcservers.net
 * addons: centos.mirrors.tds.net
 * extras: mirror.fdcservers.net
0 packages excluded due to repository protections
Setting up Install Process
Parsing package install arguments
Resolving Dependencies
--> Running transaction check
---> Package python-setuptools.noarch 0:0.6c9-5 set to be updated
--> Processing Dependency: /usr/bin/python26 for package: python-setuptools
--> Running transaction check
---> Package python26.i386 0:2.6.2-2 set to be updated
--> Processing Dependency: libpython2.6.so.1.0 for package: python26
--> Processing Dependency: libffi.so.5 for package: python26
--> Running transaction check
---> Package python26.i386 0:2.6.2-2 set to be updated
--> Processing Dependency: libffi.so.5 for package: python26
---> Package python26-libs.i386 0:2.6.2-2 set to be updated
--> Finished Dependency Resolution
python26-2.6.2-2.i386 from chl has depsolving problems
  --> Missing Dependency: libffi.so.5 is needed by package python26-2.6.2-2.i386 (chl)
Error: Missing Dependency: libffi.so.5 is needed by package python26-2.6.2-2.i386 (chl)

相关内容