Last active
June 1, 2023 04:54
-
-
Save prashantdsala/4a67ddbee1347c288dc79c451eff6008 to your computer and use it in GitHub Desktop.
Upgrade Google Chrome on Ubuntu
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
# use sudo apt-get update command to download package information from all configured sources. | |
# The sources often defined in the /etc/apt/sources. | |
sudo apt update | |
# upgrade google chrome to latest stable version | |
sudo apt --only-upgrade install google-chrome-stable | |
# check the google chrome version | |
google-chrome --version |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment