Microsoft Edge is available for Linux and in this guide I show you how to install it on Ubuntu, Linux Mint, and other Ubuntu-based Linux distributions.

Microsoft Edge uses the same underlying technologies as Google Chrome

As this tutorial shows, installing Microsoft Edge on Ubuntu and its derivatives is a straightforward process. You can do it using a GUI, or through the command line (CLI).

Both methods install an official build and adds Microsoft’s Linux repo for Microsoft Edge to your system so that you can install new versions alongside your other software updates.

Because Microsoft Edge is based on Chromium, the open-source browser engine developed (albeit not exclusively) by Google all websites, web apps, and web services that works in Google Chrome are guaranteed to work in Edge too.

You can even install Chrome extensions in Edge too because the underlying technologies is identical — though Microsoft maintains its own extension hub for browser add-ons as well, some that you’ll only find there.

How to Install Edge Browser on Ubuntu

Note: this article is about how to install Edge on Ubuntu and not why you should install it. You choose what software you use on your system. If you don’t want Edge? That’s fine, but you probably won’t be reading a “how to” guide on the topic!

Install Edge on Ubuntu using a GUI

One reason why it’s so easy to install Edge on Ubuntu is because Microsoft provide an official installer package for Ubuntu, which you can download from their website.

1. Go to Microsoft Edge Download Page

Assuming you’re on Linux, open a web browser and go to the official Microsoft Edge download page. The page will show a download button (the design of the web page changes regularly so what you see in this screenshot may have changed since it was taken):

Step 1: get the download

Before the download can begin you will be asked to agree to Microsoft Edge’s terms of service. Read through the text (lol, yeah) then click “accept and download”:

Read the small print

When you click the button a .deb package should start download automatically. This package is compatible with Ubuntu, official Ubuntu flavours (e.g., Kubuntu, Xubuntu, et al) as well as Ubuntu-based distros including Linux Mint, elementaryOS, and Zorin OS.

2. Download Edge for Linux

Depending on your browser you may be asked if you want to save or run the download. Opt to save the .deb package to your Downloads folder (or any other directory you can access easily). If you use Firefox this is the “Save File” option:

Step 2: save the installer

3. Double click on the installer

Let the download complete then use your file manager to find the Edge Linux installer.

Using Ubuntu 22.04 LTS? Double-click on the saved DEB installer to install the browser using the Ubuntu Software app. Just follow the on-screen prompts:

Step 3: run the installer

Using Ubuntu 24.04 LTS? Things are trickier.

You can install the DEB from the command line using apt or dpkgapt is recommended. Move the DEB o your home folder then run sudo apt install ./ microsoft-*, enter your password, and let it do its things.

If you prefer something to point and click at you can install the gdebi app from App Center first and then double-click on the DEB installer you downloaded above. This will ask you which app to open the DEB with. Choose ‘Gdebi’.

In both methods the official Microsoft Edge repository gets added to the list of software sources. This means you can upgrade to new versions of Edge as they’re released using the Software Updater tool on Ubuntu and equivalents on Linux Mint, Pop!_OS, etc.

4. Open Microsoft Edge

Let the install finish up then open the browser from the Applications grid (or whatever app menu, launcher, etc you use on your system). The browser may take a few moment to appear the first time you open so be patient.

Install Edge on Ubuntu using a Terminal

Prefer to install software on Ubuntu from the command line? If so, I’ve got you covered.

First step: the set-up. This command adds the Microsoft Edge Linux repo to your system, and imports the Microsoft GPG key to authenticate packages (so that you can be sure they are what they say they are):

curl https://packages.microsoft.com/keys/microsoft.asc | gpg --dearmor > microsoft.gpg
sudo install -o root -g root -m 644 microsoft.gpg /etc/apt/trusted.gpg.d/
sudo sh -c 'echo "deb [arch=amd64] https://packages.microsoft.com/repos/edge stable main" > /etc/apt/sources.list.d/microsoft-edge-dev.list'
sudo rm microsoft.gpg

If you get an error to say curl is not installed you will need to install it by running sudo apt install curl, and then re-run the command above.

Second step: paste this command in to the terminal to download and install the latest version of Microsoft Edge for Linux on Ubuntu:

sudo apt update && sudo apt install microsoft-edge-stable

Once done, launch the browser using your favourite Linux app launcher, or run microsoft-edge from a command prompt.

Once the Edge Linux repo has been added you can install microsoft-edge-beta and microsoft-edge-unstable builds too, though keep in mind those may contain bugs and unfinished features.

How to Uninstall Microsoft Edge

If you install Edge, try it out, but decide you don’t like it, you can uninstall it easily.

Open a new Terminal window and run:

sudo apt remove microsoft-edge-stable

Alternatively, open the Ubuntu Software app, search for ‘Edge’ by name, click the result, and hit the ‘remove’ button.

Simple!

Summary

That’s it; you learned how to install Microsoft Edge browser on Ubuntu, Linux Mint, and other distributions in this article.

While most Linux users will shudder at the thought of using this browser I think it’s great that we all have the choice of using Edge on Linux.

All that’s left for you to do now is to open the browser and start surfing the web — let me know how you find it down in the comments!