Last active
September 20, 2016 18:34
-
-
Save kossoy/aedae17768f167c29081f84d4cdf3b84 to your computer and use it in GitHub Desktop.
Install chrome on ubuntu 16
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
echo "deb http://dl.google.com/linux/chrome/deb/ stable main" | sudo tee /etc/apt/sources.list.d/google-chrome.list | |
wget -q -O - https://dl.google.com/linux/linux_signing_key.pub | sudo apt-key add - | |
sudo apt-get update | |
sudo apt-get install google-chrome-stable | |
or | |
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 diddnt install (you would have a warning or failure message for this), you can force them via: | |
sudo apt-get install -f | |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment