两步搞定chrome在ubuntu下的安装

下载 安装包:google-chrome-stable_current_amd64.deb
sudo dpkg -i google-chrome-stable_current_amd64.deb 


sudo apt-get -f install


执行完上面2步骤,就ok了。

针对 ubuntu 16.04
Download the package (64 bit):

wget https://dl.google.com/linux/direct/google-chrome-stable_current_amd64.deb

Install the package, forcing install of dependencies:

sudo dpkg -i --force-depends google-chrome-stable_current_amd64.deb


In case any dependencies didn't install (you would have a warning or failure message for this), you can force them via:
sudo apt-get update

sudo apt-get install -f


猜你喜欢

转载自keren.iteye.com/blog/2237613