How to Install Visual Studio Code on Ubuntu 20.04
Visual Studio Code is a well-known, powerful open-source code editor and cross-platform developed by Microsoft. It provides countless features to the developers and a trouble-free way to write and manage code.
Visual Studio Code is a streamlined Code Editor that comes up with various operations such as debugging, syntax highlighting, version control, code completion.
How to install Visual Studio Code on Ubuntu 20.04 via Repository
Step 1: The Visual Studio Code is available on Ubuntu 20.04 . To install the Visual Studio Code execute the following command:
sudo apt update
sudo apt install software-properties-common apt-transport-https wget
Step 2: Then run the commands below to add the Visual Studio Code repository to Ubuntu.
wget -q https://packages.microsoft.com/keys/microsoft.asc -O- | sudo apt-key add -
sudo add-apt-repository "deb [arch=amd64] https://packages.microsoft.com/repos/vscode stable main"
3.Finally, run the commands below to install the package
sudo apt install code
Post a Comment