When it comes to lightweight, fast, reliable, and secure browsers on Ubuntu, the Chromium web browser tops the list. Chromium is an open-source web browser, unlike Chrome. You can call Chromium an open-source version of the Chrome web browser. The Chromium project is developed and maintained by Google’s Chromium Projects, and browsers like Chrome, Firefox, and Edge are all based on Chromium’s source code. Chromium does not come pre-installed on Ubuntu 24.04, but it can be installed from the official repository.

This guide covers four methods to install Chromium on Ubuntu 24.04: apt repository, App Center (GUI), Snap, and Flatpak. Each method installs a fully functional browser, and uninstall commands for each are included at the end.

Quick Answer

The fastest way to install the Chromium browser on Ubuntu 24.04 is with apt:

sudo apt install -y chromium-browser

Verify the install with chromium-browser --version, then launch with chromium-browser. For a GUI install, open App Center, search for Chromium, and click Install.

Method 1: Install Chromium Web Browser on Ubuntu Using Apt Repository

You can install the Chromium web browser through the apt repository on Ubuntu. By default, the Chromium package does not exist in the apt official repository, so apt installs it via the Snap package manager which contains the Chromium package. The apt method is also the foundation for working with custom Debian packages on your system. Check the following steps to install Chromium via the apt repository.

Step 1: Update Ubuntu

Update the system repositories before installing the Chromium web browser by running this command:

sudo apt update && sudo apt upgrade
Terminal output of sudo apt update and upgrade on Ubuntu 24.04

Step 2: Install Chromium Web Browser

Once the system repositories are updated, install the Chromium web browser on Ubuntu 24.04 by executing this command:

sudo apt install -y chromium-browser
Terminal output of sudo apt install chromium-browser completing on Ubuntu 24.04

Step 3: Check Chromium Version

Verify the Chromium browser installation by checking its version with this command:

chromium-browser --version
Terminal showing chromium-browser version output on Ubuntu 24.04

Step 4: Launch Chromium

After installing the Chromium web browser on Ubuntu 24.04, launch it from the Terminal using this command:

chromium-browser
Chromium browser window open on Ubuntu 24.04 after launching via the chromium-browser command

Method 2: Install Chromium Web Browser on Ubuntu using Ubuntu App Center (GUI)

The most straightforward method to install Chromium on Ubuntu 24.04 is through the App Center or Software Center. The App Center installs the Chromium web browser using the Snap package manager. The steps to install the Chromium web browser on Ubuntu 24.04 are given below.

Step 1: Launch the Ubuntu App Center

First, search for App Center or Software Center in the Show Applications area and launch it:

Ubuntu 24.04 desktop showing the App Center in the applications list

Step 2: Install Chromium Web Browser

Search for Chromium web browser and open its window:

App Center search results showing Chromium web browser on Ubuntu 24.04

Now, click the Install button to install the Chromium web browser on Ubuntu 24.04:

Chromium browser page in Ubuntu 24.04 App Center with the Install button highlighted

Enter the user credentials to authenticate the installation process:

Authentication dialog asking for user credentials to install Chromium on Ubuntu 24.04

Step 3: Launch Chromium

Once the Chromium web browser is installed, press Windows + A to show all applications, search for Chromium, and launch it:

Ubuntu 24.04 Applications screen showing Chromium browser ready to launch

Method 3: Install Chromium Web Browser on Ubuntu 24.04 Using Snap (Terminal)

You can also install the Chromium web browser on Ubuntu 24.04 through the Snap package manager, which is similar to installing it through the apt repository. Snap is also the method used for other popular applications like Skype on Ubuntu 24.04. Follow the guided instructions to install the Chromium web browser on Ubuntu 24.04.

Step 1: Install Snapd on Ubuntu

If the Snap utility is not installed on the system, run this command to install it:

sudo apt install -y snapd
Terminal output of sudo apt install snapd on Ubuntu 24.04

Step 2: Install Chromium Web Browser

After installing Snapd, run this command to install the Chromium web browser on Ubuntu 24.04 using Snap:

sudo snap install chromium
Terminal output of sudo snap install chromium completing on Ubuntu 24.04

Step 3: Verify Chromium Version

To check which version of Chromium you have installed, run this command:

chromium --version
Terminal showing chromium --version output after Snap installation on Ubuntu 24.04

Step 4: Launch Chromium on Ubuntu

Once the Chromium web browser is installed, open it from the Terminal using this command:

chromium
Chromium browser window open on Ubuntu 24.04 after launching via the chromium command

Method 4: Install Chromium Web Browser on Ubuntu 24.04 Using Flatpak (Terminal)

Users can also install the Chromium web browser on Ubuntu 24.04 via the Flatpak repository. Flatpak is a package manager that installs applications without requiring additional dependencies. The same Flatpak workflow also works for data science tools like Anaconda on Ubuntu 24.04. Check the steps to install the Chromium web browser on Ubuntu via the Flatpak repository.

Step 1: Install Flatpak

Install Flatpak directly from the official apt repository by running this command:

sudo apt install -y flatpak
Terminal output of sudo apt install flatpak on Ubuntu 24.04

Step 2: Add Flatpak Remote Repository

Now, add the Flatpak remote repository to the system by running the below command:

sudo flatpak remote-add --if-not-exists flathub https://flathub.org/repo/flathub.flatpakrepo

Adding the Flatpak remote repository to the system will let you install packages from the repository:

Terminal output of flatpak remote-add flathub command on Ubuntu 24.04

Step 3: Install Chromium Web Browser on Ubuntu 24.04

Once the Flatpak repository is added to the system, run this command to install the Chromium web browser:

flatpak install flathub org.chromium.Chromium
Terminal output of flatpak install flathub org.chromium.Chromium on Ubuntu 24.04

Note: Chromium web browser installed via Flatpak may only appear in the applications list once the session is restarted.

Step 4: Launch Chromium

Once the Chromium web browser is installed on Ubuntu, launch it from the Terminal using this command:

flatpak run org.chromium.Chromium
Chromium browser window open on Ubuntu 24.04 after launching via flatpak run org.chromium.Chromium

How to Uninstall Chromium Web Browser from Ubuntu 24.04

You can remove Chromium from Ubuntu using the apt repository, Snap utility, and Flatpak repository. Check the methods mentioned below to remove the Chromium browser from Ubuntu.

Method 1: Uninstall Chromium Web Browser from Ubuntu Using apt Package Manager

To uninstall the Chromium web browser from Ubuntu through the apt repository, run this command:

sudo apt remove chromium-browser
Terminal output of sudo apt remove chromium-browser on Ubuntu 24.04

Method 2: Uninstall Chromium Web Browser from Ubuntu using Snap

You can remove the Chromium web browser from Ubuntu 24.04 through Snap by running this command:

sudo snap remove chromium
Terminal output of sudo snap remove chromium on Ubuntu 24.04

Method 3: Uninstall Chromium Web Browser from Ubuntu using Flatpak

To uninstall the Chromium web browser from Ubuntu through the Flatpak repository, run this command:

flatpak uninstall org.chromium.Chromium -y
Terminal output of flatpak uninstall org.chromium.Chromium on Ubuntu 24.04