Created
November 2, 2021 20:55
-
-
Save wictorwilen/0103dd5551ee42b2db6b0ebfccf8ec89 to your computer and use it in GitHub Desktop.
Install Microsoft Edge in WSL
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
wget -qO- https://packages.microsoft.com/keys/microsoft.asc | gpg --dearmor > packages.microsoft.gpg | |
sudo install -o root -g root -m 644 packages.microsoft.gpg /etc/apt/trusted.gpg.d/ | |
sudo sh -c 'echo "deb [arch=amd64,arm64,armhf signed-by=/etc/apt/trusted.gpg.d/packages.microsoft.gpg] https://packages.microsoft.com/repos/edge stable main" > /etc/apt/sources.list.d/vscode.list' | |
rm -f packages.microsoft.gpg | |
sudo apt update | |
sudo apt install microsoft-edge-stable | |
microsoft-edge-stable |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment