> ## Content Index
> Fetch the complete content index at: https://itsfoss.com/llms.txt
> Use this file to discover other available public pages before exploring further.

# How to Install Chromium in Fedora
- URL: https://itsfoss.com/install-chromium-fedora/
- Published: 2021-12-08T16:40:00.000Z
- Updated: 2023-08-20T14:17:24.000Z
- Description: This quick beginner's tutorial will show various methods for installing Chromium browser on Fedora Linux.
- Author: Pranav Krishna
- Tags: Fedora

[Chromium](http://chromium.org/Home?ref=itsfoss.com), the open-source mother of the [best browsers](https://itsfoss.com/best-browsers-ubuntu-linux/) in the market, including Google Chrome, Microsoft Edge, Brave and so many others, is a great browser power packed with features.

Like many other distributions, Fedora also comes with Firefox as its default browser. But you can easily install Chromium on Fedora.

The simplest option is to open the software center application and search for Chromium. You’ll find the option to install Chromium there.

![chromium in fedora software center](https://itsfoss.com/content/images/wordpress/2021/12/chromium-in-fedora-software-center-800x344.png)

Chromium can be installed from the Fedora software center

Additionally, there are two command line methods to install Chromium in Fedora Linux, which I will be walking you through:

- [DNF](https://itsfoss.com/install-chromium-fedora/#dnf) (Fedora’s package manager and **recommended**)
- [Flatpak](https://itsfoss.com/install-chromium-fedora/#flatpak) (sandboxed packaging, might be slow to start, poor system integration and take more disk space)

## Alternate method 1: Installing Chromium via DNF command

Previously, Chromium was only found in COPR repository (Fedora’s equivalent of Arch User Repository aka AUR), but now it’s actually available in the official repositories. Installing it now is a very easy task, you don’t have to add anything extra.

For that, start the terminal, and type:

```
sudo dnf install chromium
```

![Installing Chromium on Fedora via DNF package manager](https://itsfoss.com/content/images/wordpress/2021/12/Screenshot-from-2021-12-23-17-49-14-800x423.png)

Installing Chromium via DNF

When asked, press Y key to confirm the installation. Chromium will be installed within a few minutes, and it will look like the image below:

![Chromium browser on Fedora](https://itsfoss.com/content/images/wordpress/2021/12/chromium-1-800x447.png)

Chromium browser in Fedora

### Remove Chromium via DNF

Let me also tell you about the step for removing Chromium. You can either look for it in the software center and remove it from there or use the following command:

```
sudo dnf remove chromium
```

That is fairly easy, isn’t it? Let me show the Flatpak method as well.

## Alternate method 2: Installing Chromium via Flatpak

Sandboxed [Flatpak](https://itsfoss.com/what-is-flatpak/) packaging is baked in Fedora. Sandboxing is a great technology and a good security measure. But it’s sad that apps lose integration with the operating system.

But if those things don’t bother you, install Flatpak version of Chromium on Fedora. In a terminal, use this command:

```
flatpak install app/org.chromium.Chromium
```

![Installing Chromium via Flatpak](https://itsfoss.com/content/images/wordpress/2021/12/Screenshot-from-2021-12-23-17-55-55-800x423.png)

Installing Chromium via Flatpak

That will do the necessary to get Chromium ready for you.

Due to sandboxed nature of Flatpaks, the theme looks entirely different from the overall system dark theme. You can [force the Flatpak package to adhere to the system theme](https://itsfoss.com/flatpak-app-apply-theme/) with a little effort, though.

![chromium flatpak 1 1](https://itsfoss.com/content/images/wordpress/2021/12/chromium-flatpak-1-1-800x447.png)

Chromium browser – Flatpak version

### Removing Chromium Flatpak app

And to remove Chromium browser installed via Flatpak, just type this in the terminal:

```
flatpak remove chromium
```

Choosing **All the Above* from the options will completely remove chromium.

![Flatpak remove chromium](https://itsfoss.com/content/images/wordpress/2021/12/flatpak-remove-chromium-1-800x423.png)

Removing chromium – Flatpak

## Final thoughts

I’m not a fan of Sandboxed applications for daily usage; I just prefer RPMs over Flatpak or Snap even if it includes complex steps which was not the case here, thankfully.

New to Fedora? We have a good starting point for you :)

[Getting Started With FedoraCollection of useful tutorials for new Fedora users.![](https://itsfoss.com/content/images/size/w256h256/2022/12/android-chrome-192x192.png)It's FOSSAbhishek Prakash![](https://itsfoss.com/content/images/2023/01/fedora-tutorials.png)](https://itsfoss.com/fedora-tutorials/)

I hope this tutorial helps you. Let me know your thoughts in the comments section.