Google Chromeをインストールできません。どうすれば修正できますか?


35

Google Chromeブラウザーをインストールできません。なぜ、どうすれば修正できるのだろうか。Google Chromeのインストール時に端末から取得したログは次のとおりです。

$ sudo dpkg --install chrome.deb
[sudo] password for young: 
Selecting previously unselected package google-chrome-stable.
(Reading database ... 141861 files and directories currently installed.)
Unpacking google-chrome-stable (from chrome.deb) ...
dpkg: dependency problems prevent configuration of google-chrome-stable:
 google-chrome-stable depends on libgconf2-4 (>= 2.27.0); however:
  Package libgconf2-4 is not installed.
 google-chrome-stable depends on libnss3-1d (>= 3.12.3); however:
  Package libnss3-1d is not installed.
 google-chrome-stable depends on libxss1; however:
  Package libxss1 is not installed.

dpkg: error processing google-chrome-stable (--install):
 dependency problems - leaving unconfigured
Processing triggers for desktop-file-utils ...
Processing triggers for bamfdaemon ...
Rebuilding /usr/share/applications/bamf.index...
Processing triggers for gnome-menus ...
Processing triggers for man-db ...
Errors were encountered while processing:
 google-chrome-stable

$ sudo apt-get install -f
Reading package lists... Done
Building dependency tree       
Reading state information... Done
Correcting dependencies... Done
The following package was automatically installed and is no longer required:
  linux-headers-3.5.0-17
Use 'apt-get autoremove' to remove it.
The following packages will be REMOVED:
  google-chrome-stable
0 upgraded, 0 newly installed, 1 to remove and 0 not upgraded.
1 not fully installed or removed.
After this operation, 140 MB disk space will be freed.
Do you want to continue [Y/n]? Y
(Reading database ... 141960 files and directories currently installed.)
Removing google-chrome-stable ...
Processing triggers for man-db ...
Processing triggers for desktop-file-utils ...
Processing triggers for bamfdaemon ...
Rebuilding /usr/share/applications/bamf.index...
Processing triggers for gnome-menus ...

$ sudo dpkg --install chrome.deb
Selecting previously unselected package google-chrome-stable.
(Reading database ... 141861 files and directories currently installed.)
Unpacking google-chrome-stable (from chrome.deb) ...
dpkg: dependency problems prevent configuration of google-chrome-stable:
 google-chrome-stable depends on libgconf2-4 (>= 2.27.0); however:
  Package libgconf2-4 is not installed.
 google-chrome-stable depends on libnss3-1d (>= 3.12.3); however:
  Package libnss3-1d is not installed.
 google-chrome-stable depends on libxss1; however:
  Package libxss1 is not installed.

dpkg: error processing google-chrome-stable (--install):
 dependency problems - leaving unconfigured
Processing triggers for desktop-file-utils ...
Processing triggers for bamfdaemon ...
Rebuilding /usr/share/applications/bamf.index...
Processing triggers for gnome-menus ...
Processing triggers for man-db ...
Errors were encountered while processing:
 google-chrome-stable

GUIでも機能しません。私が持っているものを見てください:

GUIで


同じ問題があり、以下の答えはどれも機能しないようです。
ヤンキングイン

回答:



56

これを修正するには、不足している依存関係をインストールします。
次のコマンドを実行するだけ
です(実行後sudo dpkg -i google-chrome-stable_current_i386.deb)。

sudo apt-get install -f

これにより、不足している依存関係がインストールされ、Google Chromeが構成されます。


1
質問を読んでください。それがまさにOPが行っていることであり、それが問題なのです
...-gertvdijk

3
これは私のパンを保存しました。イェイ
ニコラスディピアッツァ

素晴らしい作品、ちょうどあなたがインストール2回実行する必要があることを追加
アーメドHamdy

10

なぜUbuntuリポジトリからChromiumをインストールしないのですか?

sudo apt-get install chromium-browser

簡単!


2
現時点では、これは古いバージョンであり、Googleブランドバージョンで既に修正された多くのセキュリティバグがパッケージ化されています。
gertvdijk

クロムブラウザーはそれほど安定しておらず、ほとんどが開発者向けなので、クロムブラウザーをインストールしたくありません。
フクロウ

2
かなり安定していることがわかりました。基本的にChromeと同じです。
スムーズテキサス

私はそれを知りませんでした。apt-getを使用するタイミングと使用しないタイミングをどのように知ることができますか?
ブルースホイールトン16

1
あなたがしたくchromeないchromium場合の1つの例:Windows + TV + Smartphoneで動作する有料のサブスクリプションを既にお持ちの場合、Linuxでも同様にアクセスしたいでしょうか?その場合chrome、箱から出してすぐに必要なものがすべて付属している可能性があります。また、簡単に更新できます。chromiumほとんどの場合、サブスクリプションでサポートされていないものとは異なり、適用されるすべての微調整(フラッシュ、DRMなどを考えてください)により、更新を維持するのが難しい場合があります。
ティノ

1

sudo apt-get update ; sudo apt-get install libgconf2-4 libnss3-1d libxss1

ここにエラー出力を投稿してください。エラーがなければ、sudo dpkg -i chrome.deb再びその後、あなたは良いはずです。


こんにちは、返信ありがとうございます。いくつかのエラーメッセージが表示されました:pastebin.com/CYeCMWiE
owl


0

私は同じ問題を抱えていたので、これを使って修正しました。

sudo apt-get update
sudo apt-get upgrade
sudo apt -f install

次に、Google Chromeを再度インストールしてください。

弊社のサイトを使用することにより、あなたは弊社のクッキーポリシーおよびプライバシーポリシーを読み、理解したものとみなされます。
Licensed under cc by-sa 3.0 with attribution required.