web-dev-qa-db-ja.com

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

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でも機能しません。私が持っているものを見てください:

on GUI

35
owl

おそらく、「ユニバース」リポジトリを有効にする必要があります。

有効にしたら、システムを更新すると、google-chrome-stableをインストールできるようになります。

Sudo apt-get update
Sudo apt-get install libgconf2-4 libnss3-1d libxss1
33
jokerdino

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

Sudo apt-get install -f

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

56
Vineet

UbuntuリポジトリからChromiumをインストールするだけではどうですか?

Sudo apt-get install chromium-browser

簡単!

10
smooth-texan

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

ここにエラー出力を投稿してください。エラーがなければ、Sudo dpkg -i chrome.debを実行した後、元気になります。

1
Jim Salter

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

Sudo apt-get update
Sudo apt-get upgrade
Sudo apt -f install

その後、Google Chromeを再度インストールしてください。

0
Anamitra

最近このエラーを見ましたが、次の方法で解決できました。

apt-get install libcurl3
0
Snap Shot