我无法在 Ubuntu 16.04 LTS 上安装 Chromium 或 Chrome

Gia*_* L. 4 dependencies google-chrome chromium 16.04

刚刚在我组装的机器上安装了 Ubuntu 16.04 LTS。
尝试通过 Ubuntu 软件或 Chrome 安装 Chromium,但安装过程很快停止。试图在终端中运行:

sudo apt install chromium 

Reading package lists... Done Building dependency tree Reading state information... Done Package chromium 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: chromium-bsu:i386 chromium-bsu E: Package 'chromium' has no installation candidate

sudo apt install chromium-bsu 

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:
 chromium-browser-l10n : Depends: chromium-browser (>= 55.0.2883.87-0ubuntu0.16.04.1263) but it is not going to be installed
                         Depends: chromium-browser (< 55.0.2883.87-0ubuntu0.16.04.1263.1~) but it is not going to be installed
 chromium-bsu : Depends: chromium-bsu-data (>= 0.9.14) but it is not going to be installed
                Depends: fonts-uralic but it is not going to be installed or
                         ttf-uralic but it is not installable
                Depends: libalut0 (>= 1.0.1) but it is not going to be installed
                Depends: libglc0 (>= 0.7.1) but it is not going to be installed
                Depends: libsdl-image1.2 (>= 1.2.10) but it is not going to be installed
                Depends: libsdl1.2debian (>= 1.2.11) but it is not going to be installed
E: Unmet dependencies. Try 'apt-get -f install' with no packages (or specify a solution).    
Run Code Online (Sandbox Code Playgroud)

也许,是否存在未满足的依赖关系的问题..?

Mar*_*rby 9

是的,问题是依赖关系,这些是固定的

sudo apt -f install

第二个问题是 apt 尝试在 /var/cache/apt/archives 中安装失败的一些遗留文件,以修复此运行

sudo rm /var/cache/apt/archives/chromium*

现在 Chromium 将安装

sudo apt install chromium-browser

选民

请考虑给这个答案一些爱,它真的对这个问题有帮助。