How to install Google Chrome on Ubuntu 20.04?

Overview

Google Chrome is a popular web browser developed by Google that is known for its speed and simplicity, as well as its support for a wide range of extensions and plugins. It is available for multiple operating systems, including Windows, macOS, and Linux.

Prerequisites

There are certain prerequisites that need to be met before you begin.

  • Ubuntu 20.04 LTS configured on your system.

  • Non-root sudo user privileges.

Get Started

Step 1: Update the Ubuntu package list to ensure that your Ubuntu system has the latest package details.

sudo apt update

Step 2(Optional): Install the wget package, which is used to download files from the internet.

sudo apt install wget 

Step 3: Download the Google Chrome package from the official Google website. The URL in the command specifies the location of this package.

wget <https://dl.google.com/linux/direct/google-chrome-stable_current_amd64.deb> 

Step 4: Install the downloaded Google Chrome package on your Ubuntu system. The ./ before the package name specifies that the package is in the current directory.

sudo apt install ./google-chrome-stable_current_amd64.deb 

Step 5: Once the installation is complete, launch Google Chrome by running the following command.

google-chrome-stable 

Conclusion

Installing Google Chrome on Ubuntu 20.04 is a straightforward process. Once installed, you can enjoy fast and secure web browsing with Google Chrome on your Ubuntu system.

Last updated