> ## 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 Google Chrome on Fedora
- URL: https://itsfoss.com/install-google-chrome-fedora/
- Published: 2020-11-09T08:44:32.000Z
- Updated: 2023-09-06T06:53:08.000Z
- Description: Installing Google Chrome on Fedora is super easy. You can use either command line or GUI methods. Here are detailed, step-by-step instructions.
- Author: Dimitrios
- Tags: Fedora, Installation 📥

Fedora comes with Firefox as the default web browser. Despite it being an excellent web browser, you may prefer the popular Google Chrome browser.

If you are wondering how to install Google Chrome on Fedora, let me show you two ways of installing Google Chrome, graphical method and command line method.

- GUI method 1: Install Chrome from the software center by enabling Fedora third-party repository
- GUI method 2: Download RPM file from Google Chrome’s website
- CLI method: Install Chrome from the Fedora third-party repository, everything using commands (same as GUI method 1)

It is up to you which method you prefer. Your Google Chrome on [Fedora](https://getfedora.org/?ref=itsfoss.com) will be getting regular updates via the system updates in all three methods.

## Method 1: Install Google Chrome on Fedora from the Software Center

Fedora provides a third-party repository that contains some popular proprietary software, and graphics driver. Google Chrome is one of them.

First step: [make sure to enable third-party repositories in Fedora](https://itsfoss.com/fedora-third-party-repos/). You should see this option in the software center itself.

![Fedora Third Party Repositories](https://itsfoss.com/content/images/wordpress/2020/11/fedora-third-party-repositories.jpg)

Step1: Fedora Third Party Repositories

Once you have it enabled, simply search for Chrome in the software center:

![Chrome In Fedora](https://itsfoss.com/content/images/wordpress/2020/11/chrome-in-fedora.png)

Step 2: Search for Chrome In Fedora Software Center

And install it from there:

![Installing Chrome Fedora](https://itsfoss.com/content/images/wordpress/2020/11/installing-chrome-fedora.png)

Step 3: Install Chrome Fedora

Can it be any easier than this? I don’t think either :)

## Method 2: Installing Google Chrome on Fedora from Chrome website

If you do not want to enable the third-party repository, that’s okay. You don’t have to. You can download the RPM file from Chrome’s website, double-click on it and install it. Yes, [installing RPM file on Fedora](https://itsfoss.com/install-rpm-files-fedora/) is that simple.

Visit Google Chrome’s website and click on the download button.

[Get Google Chrome](https://www.google.com/chrome/?ref=itsfoss.com)

![Download Google Chrome for installing it On Ubuntu](https://itsfoss.com/content/images/wordpress/2019/01/install-google-chrome-ubuntu-1-800x374.jpeg)

Then select the .rpm package and click on “Accept and Install”.

![Download Rpm Chrome](https://itsfoss.com/content/images/wordpress/2020/11/3.-download-rpm-chrome.png)

Once the download is over, double click on the file and click install when prompted at the package manager. Type your password and wait until the process is done.

![Install Chrome Fedora](https://itsfoss.com/content/images/wordpress/2020/11/4.-install-chrome-fedora.png)

That’s super easy, right? Let’s see somewhat complicated method (if you are not a terminal fan).

## Method 3: Install Chrome on Fedora using command line

Firstly, you need to add extra Fedora repositories (that you saw in method 1):

```
sudo dnf install fedora-workstation-repositories
```

And then enable Google Chrome repository.

```
sudo dnf config-manager --set-enabled google-chrome
```

![Fedora Extra Repos](https://itsfoss.com/content/images/wordpress/2020/11/1.-Fedora-extra-repos.png)

To install the Google Chrome stable release, run the following command at your terminal.

```
sudo dnf install google-chrome-stable
```

You should get a warning for importing the GPG key, enter y to continue.

![Fedora GPG Key](https://itsfoss.com/content/images/wordpress/2020/11/2.-Fedora-GPG-key.png)

You are adding the Google Chrome repository. The package comes from this repository, directly from Google.

## Conclusion

Installing Google chrome on Fedora is fairly easy, even if you use the command line. It’s pretty much the [same as installing Chrome on Ubuntu](https://itsfoss.com/install-chrome-ubuntu/) except the third-party repository part.

Now that you have installed it, you may want to [check our list of Google Chrome keyboard shortcuts](https://itsfoss.com/google-chrome-shortcuts/) to use the browser faster.

Don’t forget to subscribe to get the latest news and tutorials about Fedora, and if you have any questions, please leave a comment below.