我该如何修复损坏的包装系统?

我该如何修复损坏的包装系统?

我有以下问题:

The package system is broken

Check if you are using third party repositories. If so disable them, since they are a common source of problems.
Furthermore run the following command in a Terminal: apt-get install -f

The following packages have unmet dependencies:

chromium-browser-l10n: Depends: chromium-browser (= 20.0.1132.47~r144678-0ubuntu0.12.04.1) but 18.0.1025.168~r134367-0ubuntu0.12.04.1 is installed"

有什么建议么?

答案1

尝试删除旧版本的 Chromium 和语言包,然后更新存储库缓存并重新安装它们

sudo apt-get remove chromium-browser
sudo apt-get remove chromium-browser-l10n
sudo apt-get update
sudo apt-get install chromium-browser
sudo apt-get install chromium-browser-l10n

相关内容