Install Microsoft Edge on Ubuntu: Step-by-Step Guide
The steps to install the Edge browser in Ubuntu are as follows:
- Open the terminal and enter the following command to add the software source for Microsoft Edge:
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'
- Update the software package index.
sudo apt update
- Install the Edge browser.
sudo apt install microsoft-edge-dev
- After installation is complete, you can find and launch the Edge browser in the application menu.
Attention: If you are using the 64-bit version of Ubuntu, make sure to add the software source with [arch=amd64].