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

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

Step 3: Check Chromium Version
Verify the Chromium browser installation by checking its version with this command:
chromium-browser --version

Step 4: Launch Chromium
After installing the Chromium web browser on Ubuntu 24.04, launch it from the Terminal using this command:
chromium-browser

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:

Step 2: Install Chromium Web Browser
Search for Chromium web browser and open its window:

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

Enter the user credentials to authenticate the installation process:

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

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

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

Step 3: Verify Chromium Version
To check which version of Chromium you have installed, run this command:
chromium --version

Step 4: Launch Chromium on Ubuntu
Once the Chromium web browser is installed, open it from the Terminal using this command:
chromium

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

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:

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

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

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

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

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
