我如何在 Debian 终端中清除先前的依赖关系检查

我如何在 Debian 终端中清除先前的依赖关系检查

我试图在我的 debian-linux 下安装一些工具,但每当我尝试安装具有依赖关系的新工具时,它都会记住旧工具

背景 :

昨天我尝试使用以下命令安装 master pdf editor

apt-get -f install masterpdfeditor

在机器下载并安装依赖项之前,我关闭了终端并关闭了机器

今天我尝试安装 ssh 客户端另一个新包

使用以下命令:

apt-get install chkconfig

Reading package lists... Done

Building dependency tree       

 state information... Done

您可能需要运行“apt-get -f install”来纠正这些问题:

The following packages have unmet dependencies:   master-pdf-editor3:i386 : Depends: libqt4-network:i386 (>= 4.6.4) but it is not going to be installed

Depends: libqtcore4:i386 (>= 4.6.4) but it is not going to be installed
 Depends: libqtgui4:i386 (>= 4.8.4) but it is not going to be installed E: Unmet dependencies. Try 'apt-get -f install' with no packages (or specify a solution).

根据我昨天的理解,终端正在尝试安装 masterpdf,但昨天我的终端已将其退出

此外,chkconfig 是配置检查工具,而 masterpdf 是 pdf 编辑器,两者不能具有相同的依赖关系。

我的问题有几个:我怎样才能清除主 pdf 并安装 chkconfig,换句话说,我怎样才能清除机器上以前的安装/依赖性检查以安装新的

答案1

apt-get -f install 

我使用它并纠正了我的依赖性检查,命令安装旧的依赖性检查并允许我安装新的

相关内容