如何修复损坏的软件包系统?

Per*_*rry 4 package-management

我有以下问题:

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"
Run Code Online (Sandbox Code Playgroud)

有什么建议?

小智 6

尝试删除旧版本的 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
Run Code Online (Sandbox Code Playgroud)