sudo apt-get install 不起作用

sudo apt-get install 不起作用

抱歉,我可能重复了一个问题,但无论我何时尝试sudo apt-get install (something),我都无法让它工作。这就是结果。

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:
 guake : Depends: python-glade2 but it is not going to be installed
         Depends: python-keybinder but it is not going to be installed
         Depends: python-vte but it is not going to be installed
 kde-telepathy-minimal : Depends: kde-config-telepathy-accounts (>= 
15.04.0) but it is not going to be installed
E: Unmet dependencies. Try 'apt-get -f install' with no packages (or specify a solution).

所以我尝试了:sudo apt-get -f install但仍然不起作用。请帮忙。

我应该怎样让其中任何一个工作呢?

如果我能得到答复就太好了。谢谢!

答案1

 sudo apt-get autoclean

删除 sources.list 文件并创建新的 sources.list...

sudo rm /etc/apt/sources.list 

然后输入

sudo software-properties-gtk 

在此处输入图片描述 这将打开 software-properties-gtk 并自动创建一个 newsources.list。

然后将服务器更改为美国或您选择的任何其他服务器。您必须从新对话框中启用存储库才能创建新的 sources.list。

勾选所有框然后单击“恢复”,再单击“关闭”。

需要恢复默认存储库

 sudo apt-get update && sudo apt-get dist-upgrade -y

(最好在安装之前备份此文件,以便在发生此类情况时进行恢复)

现在安装任何东西!

答案2

您尝试安装 Kubuntu-desktop 软件包吗?您不应该再尝试安装它。它似乎在 Ubuntu 16.04 中损坏了,因为该软件包似乎实际上不包含 Telepathy IM 客户端的依赖项,导致依赖项损坏,从而导致 apt 损坏。安装 Synaptic 软件包管理器是个好主意,这样就可以更轻松地处理这类问题。但是,回到正题,打开终端并输入:

sudo dpkg -P unity-scope-gdrive account-plugin-google account-plugin-facebook
sudo apt-get install -f

相关内容