我想安装ibus:i386。但是,我发现一个错误,就是这个包依赖于gnome-icon-theme:i386,它是不可安装的。实际上,当我运行apt-get install gnome-icon-theme:i386时,会发现一个错误,即没有可安装的候选程序。
启用了universe存储库,下面是我运行sudo apt-get install gnome-icon-theme:i386时得到的信息:
Reading package lists...
Building dependency tree...
Reading state information...
Package gnome-icon-theme:i386 is not available, but is referred to by another package.
This may mean that the package is missing, has been obsoleted, or
is only available from another source
However the following packages replace it:
file-roller:i386 file-roller gnome-icon-theme-full
E: Package 'gnome-icon-theme:i386' has no installation candidate如何安装此软件包以使此依赖项检查通过?
发布于 2016-01-24 09:38:09
gnome-icon-theme位于Universe存储库中,您必须通过以下方式启用该存储库:
sudo apt-add-repository universe然后通过以下方式运行更新:
sudo apt-get update现在,您可以通过以下方法安装该软件包:
apt-get install gnome-icon-theme如果上面的gnome-icon-theme-full由于任何原因不能工作,也可以安装。请注意,这些包具有多弓的支持。
https://askubuntu.com/questions/724935
复制相似问题