Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save faisalnawazmir/7038ddc49c32eb25eda56241a78899eb to your computer and use it in GitHub Desktop.
Save faisalnawazmir/7038ddc49c32eb25eda56241a78899eb to your computer and use it in GitHub Desktop.
How to Install Visual Studio Code on MX Linux 19.5 (Debian 10)

How to Install Visual Studio Code on MX Linux 19.5 (Debian 10)

Source Info: https://linuxize.com/post/how-to-install-visual-studio-code-on-debian-10/

Install dependencies

sudo apt update
sudo apt install software-properties-common apt-transport-https curl

Import Microsoft GPG

curl -sSL https://packages.microsoft.com/keys/microsoft.asc | sudo apt-key add -

Add repository

sudo add-apt-repository "deb [arch=amd64] https://packages.microsoft.com/repos/vscode stable main"

Install VS Code

sudo apt update
sudo apt install code
@faisalnawazmir
Copy link
Author

thanks

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment