这是我尝试安装chrome64并遇到问题。
sudo dpkg --install /home/chronus/Downloads/google-chrome-stable_current_amd64.deb
Preparing to replace google-chrome-stable 35.0.1916.153-1 (using .../google-chrome-stable_current_amd64.deb) ...
Unpacking replacement google-chrome-stable ...
dpkg: dependency problems prevent configuration of google-chrome-stable:
google-chrome-stable depends on gconf-service; however:
Package gconf-service is not installed.
google-chrome-stable depends on libasound2 (>= 1.0.23); however:
Version of libasound2 on system is 1.0.22-0ubuntu7.
google-chrome-stable depends on libgconf-2-4 (>= 2.31.1); however:
Package libgconf-2-4 is not installed.
google-chrome-stable depends on libgcrypt11 (>= 1.4.5); however:
Version of libgcrypt11 on system is 1.4.4-5ubuntu2.2.
google-chrome-stable depends on libgdk-pixbuf2.0-0 (>= 2.22.0); however:
Package libgdk-pixbuf2.0-0 is not installed.
google-chrome-stable depends on libglib2.0-0 (>= 2.26.0); however:
Version of libglib2.0-0 on system is 2.24.1-0ubuntu2.
google-chrome-stable depends on libgtk2.0-0 (>= 2.24.0); however:
Version of libgtk2.0-0 on system is 2.20.1-0ubuntu2.1.
google-chrome-stable depends on libnspr4 (>= 1.8.0.10); however:
Package libnspr4 is not installed.
google-chrome-stable depends on libnss3 (>= 3.14.3); however:
Package libnss3 is not installed.
google-chrome-stable depends on libstdc++6 (>= 4.6); however:
Version of libstdc++6 on system is 4.4.3-4ubuntu5.1.
google-chrome-stable depends on libx11-6 (>= 2:1.4.99.1); however:
Version of libx11-6 on system is 2:1.3.2-1ubuntu3.1.
dpkg: error processing google-chrome-stable (--install):
dependency problems - leaving unconfigured
Processing triggers for man-db ...
Processing triggers for desktop-file-utils ...
Processing triggers for python-gmenu ...
Rebuilding /usr/share/applications/desktop.en_IN.cache...
Processing triggers for python-support ...
Errors were encountered while processing:
google-chrome-stable
尝试安装gconf-service时出现以下错误
google-chrome-stable: Depends: gconf-service but it is not installable
Depends: libasound2 (>= 1.0.23)
Depends: libgconf-2-4 (>= 2.31.1) but it is not installable
Depends: libgcrypt11 (>= 1.4.5) but 1.4.4-5ubuntu2.2 is to be installed
Depends: libgdk-pixbuf2.0-0 (>= 2.22.0) but it is not installable
Depends: libglib2.0-0 (>= 2.26.0) but 2.24.1-0ubuntu2 is to be installed
Depends: libgtk2.0-0 (>= 2.24.0) but 2.20.1-0ubuntu2.1 is to be installed
Depends: libnspr4 (>= 1.8.0.10) but it is not installable
Depends: libnss3 (>= 3.14.3) but it is not installable
Depends: libstdc++6 (>= 4.6) but 4.4.3-4ubuntu5.1 is to be installed
Depends: libx11-6 (>= 2:1.4.99.1) but 2:1.3.2-1ubuntu3.1 is to be installed
答案 0 :(得分:0)
" google-chrome-stable取决于gconf-service;然而: 未安装包gconf-service。"。
运行" apt-get install gconf-service"然后再试一次。
答案 1 :(得分:0)
如果您正在运行Ubuntu,请在终端中运行:
software-properties-gtk
并确保选中标记为(universe)
的那个。然后按,Close
和Reload
并等待完成。
接下来尝试使用
安装gconf-service
sudo apt-get install gconf-service
如果这不起作用,请运行
sudo apt --fix-broken install
sudo apt-get install gconf-service
最后应安装gconf-service
。现在找到您的Chrome .deb文件并进行安装,替换" / home / ubuntu / Downloads /"你自己的道路
sudo dpkg -i '/home/ubuntu/Downloads/google-chrome-stable_current_amd64.deb'
我意识到这个问题已经发布很久很久了,但我遇到了同样的问题,默认情况下没有启用Universe源(使用Ubuntu 17.10),这可能与事实上,我正在运行一个实时启动。希望这有助于某人!