这里提供一个Ubuntu安装谷歌浏览器的简单方法。
1. 下载谷歌浏览器安装包
wget https://dl.google.com/linux/direct/google-chrome-stable_current_amd64.deb
2. 安装谷歌浏览器
dpkg -i google-chrome-stable_current_amd64.deb
“正常情况”这时候会报错,据说跟谷歌浏览器不是开源软件有关,用sudo apt-get install -f
修复一下,再dpkg -i google-chrome-stable_current_amd64.deb
,就可以了。
1. Download Chrome
wget https://dl.google.com/linux/direct/google-chrome-stable_current_amd64.deb
dpkg -i google-chrome-stable_current_amd64.deb
#### 2. Install Chrome
dpkg -i google-chrome-stable_current_amd64.deb
However, it _DID NOT_ work! It says:
Errors were encountered while processing:
google-chrome-stable
This issue was caused by missing depandancies. So it can be solved via:
sudo apt-get install -f
After that re-run:
dpkg -i google-chrome-stable_current_amd64.deb
Now it works!