在 ubuntu 14.10 中安装 Google Chrome 时出错

在 ubuntu 14.10 中安装 Google Chrome 时出错

我刚刚安装了 ubuntu 14.10。当我尝试google_chrome_stable.deb从软件中心安装时,显示以下错误。

Dependency is not satisfiable: libappindicator1

答案1

要安装 Google Chrome,请在终端中输入

sudo apt-get install libxss1 libappindicator1 libindicator7
wget https://dl.google.com/linux/direct/google-chrome-stable_current_amd64.deb
sudo dpkg -i google-chrome*.deb

相反, 如果您愿意的话google-chrome-stable,您可以从 google-chrome-betagoogle-chrome-unstable包中进行选择。

如果出现新的错误跑完步 sudo dpkg -i google-chrome*.deb再跑

sudo apt-get install -f
sudo dpkg -i google-chrome*.deb

这将解决中断的依赖关系。在安装过程中,PPA 会添加到您的系统中,这样每当您使用 检查系统更新时,Google Chrome 都会收到最新更新sudo apt-get update

相关内容