web-dev-qa-db-ja.com

Ubuntu 16.04 LTSにChromiumまたはChromeをインストールできません

組み立てたマシンに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).    

たぶん、満たされていない依存関係の問題があります。

4
Gianfranco L.

はい、問題は依存関係でした。これらは修正されました

Sudo apt -f install

2番目の問題は、この実行を修正するために、aptが/ var/cache/apt/archivesにインストールしようとして失敗したために残ったファイルでした。

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

これでChromiumがインストールされます

Sudo apt install chromium-browser

有権者

この答え いくらかの愛を与えることを考えてください。本当にこの質問に役立ちました。

7
Mark Kirby

ブラウザでGoogleホームページにアクセスします。そこにLinuxのダウンロードがあるはずです。ダウンロードしてクリックすると、自動的にインストールされます。ホームページで見つからない場合は、「Google Chrome」を検索してください。ブラウザダウンロード"。

0
Bob