Skip to content

Instantly share code, notes, and snippets.

@kossoy
Last active September 20, 2016 18:34
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save kossoy/aedae17768f167c29081f84d4cdf3b84 to your computer and use it in GitHub Desktop.
Save kossoy/aedae17768f167c29081f84d4cdf3b84 to your computer and use it in GitHub Desktop.
Install chrome on ubuntu 16
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