How to Install Chrome on Ubuntu

How to Install Chrome on Ubuntu

ยท

2 min read

Google Chrome is one of the most popular web browsers available today due to its speed, security, and functionality. If you use the Ubuntu operating system, installing Chrome is quick and simple. This guide will show you two different methods for getting Google Chrome up and running on Ubuntu.

Prerequisites

Before installing Google Chrome, make sure your system is up-to-date by running the following commands in your terminal:

sudo apt update
sudo apt upgrade

This will fetch the latest app lists and install any available updates.

Method 1: Install Chrome using apt

The easiest way to install Google Chrome on Ubuntu is to use the apt package manager:

  1. Add the official Google Chrome repository:

     wget https://dl.google.com/linux/direct/google-chrome-stable_current_amd64.deb
    
  2. Install the Chrome .deb package:

     sudo apt install ./google-chrome-stable_current_amd64.deb
    
  3. Once installed, you can launch Chrome by searching for it in the app grid or running:

     google-chrome
    

The benefit of using apt to install Google Chrome is that it also handles updating Chrome when new versions are released.

Method 2: Manual Download and Install

Alternatively, you can manually download and install the latest Google Chrome build on Ubuntu:

  1. Go to https://www.google.com/chrome/ in your current browser.

  2. Click Linux under the Download Chrome header.

  3. In the dialog box that appears, click Accept and Install to begin the download.

  4. When finished, navigate to your Downloads folder.

  5. Right-click the Chrome .deb file and select Open with Software Install.

  6. The Ubuntu Software app will launch to complete the Chrome installation. Click Install to finish.

  7. You can then find Google Chrome in your applications grid and launch it.

The manual method gives you full control over which version of Chrome you install. However, it does mean you are responsible for manually updating Google Chrome as new releases become available.

Conclusion

Installing Google's popular Chrome browser on your Ubuntu operating system is quick and painless using either apt or a manual download. Chrome offers users speed, customization, syncing between devices, extensions, and much more for free. Keep your software updated and enjoy the vast functionality of Chrome on your Ubuntu desktop or laptop.

ย