May 20, 2024

How To Install Microsoft Edge On Ubuntu

Add the Microsoft Edge Linux repo to your system and import the Microsoft GPG key to authenticate packages by running the following command.

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 that curl is not installed in your system, you will need to install it by running the following command below then re-run the command above.

sudo apt install curl

Run a quick update by running the following command in a terminal window before installing Micorsoft Edge.

sudo apt update
sudo apt upgrade

To install Microsoft Edge, run the following command.

sudo apt install microsoft-edge-stable