$ apt-get install -f -o 'Dpkg::Options::=--force-confmiss --force-all --force-confnew --overwrite-conffiles' --reinstall at-spi2-core
Reading package lists... Done
Building dependency tree
Reading state information... Done
You might want to run 'apt-get -f install' to correct these:
The following packages have unmet dependencies:
kde-workspace-bin : Depends: qdbus but it is not going to be installed
libqt4-dbus : Depends: qdbus (= 4:4.8.5+git192-g085f851+dfsg-2ubuntu4) but it is not going to be installed
E: Unmet dependencies. Try 'apt-get -f install' with no packages (or specify a solution).
我不太了解“但不会安装”。那为什么不安装呢?
apt-get -f install
没有帮助,它什么也不做:
$ apt-get install -f
Reading package lists... Done
Building dependency tree
Reading state information... Done
0 upgraded, 0 newly installed, 0 to remove and 0 not upgraded.
@乔斯:我做到了。现在可以了。但是,这并不能真正回答我的问题或问题所在。
—
艾伯特
我想这是您原始apt-get命令中选项的组合,阻止apt安装其他依赖项。
—
2014年
在这里,我想念的
—
koppor
main
只有deb http://de.archive.ubuntu.com/ubuntu/ wily universe multiverse
信任。然后,apt想从Universe安装一个软件包,该软件包仅取决于wily / main中可用的版本,因此无法安装。
尝试将缺少的软件包添加到安装命令中:
—
antivirtel '16
sudo apt-get install --reinstall at-spi2-core qdbus libqt4-dbus
sudo apt-get install qdbus
。