当安装、卸载件包时,出现依赖问题 error: Failed dependencies

error: Failed dependencies:……

依赖关系非常复杂,当你试图先安装任何一个包时都会出现这样的依赖关系错误,这时候你就应该强制安装了,我认为只要你把服务或软件需要的包都装上,强制安装也不会出问题的,不会有什么影响。

非常简单,只要加上一个--force (强制) 和--nodeps(不查找依赖关系)就可以了

如:rpm -vih httpd-2.2.3-6.el5.i386.rpm --force --nodeps

卸载时就不用--force了,只要加入--nodeps就ok了

时间: 2024-10-13 23:10:51

当安装、卸载件包时,出现依赖问题 error: Failed dependencies的相关文章

Linux下卸载jdk时,弹出error: Failed dependencies 该如何处理

虚拟机中装Linux,版本centOS6.6_64,之前已经安装好jdk了,卸载时弹出如下错误: [[email protected] 桌面]# rpm -e jdk1.8.0_112-1.8.0_112-fcs.x86_64 error: Failed dependencies: jre >= 1.5.0 is needed by (installed) libreoffice-ure-1:4.0.4.2-14.el6.x86_64 提示卸载时的以依赖错误. jdk版本是jdk1.8.0_11

在CentOS中安装32位或64位MySql报错error: Failed dependencies解决办法

在CentOS中安装MySql报错error: Failed dependencies解决办法 安装64位MySql报错内容如下:error: Failed dependencies:        libaio.so.1()(64bit) is needed by MySQL-server-5.6.19-1.el6.x86_64    libaio.so.1(LIBAIO_0.1)(64bit) is needed by MySQL-server-5.6.19-1.el6.x86_64    

linux 安装rpm包时遇到error:Failed dependencies解法方法

[[email protected] ~]# rpm -ivh yum-3.2.29-73.el6.centos.noarch.rpm --nodeps --force warning: yum-3.2.29-73.el6.centos.noarch.rpm: Header V3 RSA/SHA1 Signature, key ID c105b9de: NOKEY Preparing...                ######################################

CentOs Linux 安装MySql服务失败 安装需要依靠包error:Failed dependencies

[[email protected] data]#rpm -ivh MySQL-server-5.5.24-1.linux2.6.x86_64.rpm error: Failed dependencies: MySQL conflicts with mysql-5.0.77-4.el5_4.2.x86_64纠结了半天,终于找到了解决方法:(感谢提供相关文章的博友) 在安装包后面加两个参数,如 [[email protected] data]#rpm -ivh MySQL-server-5.5.2

在安装seaborn等包时,使用pip install安装不成功

在安装seaborn等包时,使用pip install seaborn安装不成功,报错有:Failed building wheel for scipy,Failed cleaningbuild dir for scipy. 图二第一行显示了Failed to build scipy. 所以可以推断是scipy出了问题. 解决方法: 手工下载Scipy: http://www.lfd.uci.edu/~gohlke/pythonlibs/#scipy 注意:cp后面的数字对应的是python的版

Ubuntu编译安装Php,配置时出现:Configure: error: XML configuration could not be found

解决这个问题是需要安装libxml, sudo apt-get install libxml2-dev Ubuntu编译安装Php,配置时出现:Configure: error: XML configuration could not be found,布布扣,bubuko.com

python安装pymssql等包时出现microsoft visual c++ 14.0 is required问题无需下载visualcppbuildtools的解决办法

如题,在练习python安装一些包时,出现了microsoft visual c++ 14.0 is required问题.网上有很多资料:一是下载对应的.whl文件,然后pip install安装:二是下载安装一个visualcppbuildtools+full.exe安装程序(其实就是安装VS工具).第一种方法在我的电脑上没有成功,第二种方法看起来就是麻烦不断,而且我电脑本身已经安装了vs2015,安装程序竟然要求我卸载以前的版本,直接忽略! 下面提供一个无需下载VS工具的方法: 1.下载对

用rpm安装软件出现error: Failed dependencies:

这个错误是在 Linux系统下 安装  rpm 格式 文件时经常出现的错误 ,解决方法如下: 以文件名为 samba.i386.rpm 的包 进行说明 , 在 rpm -ivh lisamba.i386.rpm加上 --nodeps --force这两个参数即可.

web项目引入js包时,报syntax error on token

解决方案也很简单,下面介绍一下,解决步骤: 1.选中jQuery报错的web工程: 2.右键-->Myeclipse-->Exclude From Validation,选中: 3.继续右键Myeclipse-->Run Validation. https://www.cnblogs.com/yadongliang/p/7594470.html 原文地址:https://www.cnblogs.com/2016-cxp/p/9219068.html