-
-
Save StepanPetei/e24a9a6978afac5e722f353cb6f04824 to your computer and use it in GitHub Desktop.
Install Google Chrome in Ubuntu Linux with apt-get
This file contains hidden or 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
# Installing google chrome via APT (sadly no SNAP available from Google, like there is for Chromium) | |
# Setup the Google signer and repo | |
curl -O https://packages.cloud.google.com/apt/doc/apt-key.gpg && sudo apt-key add apt-key.gpg | |
sudo sh -c 'echo "deb [arch=amd64] http://dl.google.com/linux/chrome/deb/ stable main" >> /etc/apt/sources.list.d/google.list' | |
# Install | |
sudo apt-get update | |
sudo apt-get install google-chrome-stable |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment