Install the VS Code editor on Ubuntu
- Run following curl command to download Microsoft GPG key
# curl https://packages.microsoft.com/keys/microsoft.asc | gpg –dearmor > microsoft.gpg
- Then install the key via command:
# sudo mv microsoft.gpg /etc/apt/trusted.gpg.d/microsoft.gpg
- Add the VS Code repository to your system by running the command:
# sudo sh -c ‘echo “deb [arch=amd64] https://packages.microsoft.com/repos/vscode stable main” > /etc/apt/sources.list.d/vscode.list’
- Install the VS Code editor by running the commands below in terminal:
# sudo apt update
# sudo apt install code
Ready to Solve Your Most Complex Technical Challenges?
Our senior advisors are ready to help you navigate the ever-evolving technology landscape with precision and expertise.
Schedule a ConsultationRelated Articles
Setup GitHub authentication on Mac
You have to configure Git with your GitHub account and set up secure authentication and the recommended approach is to use SSH…
Different deployment environments!
Many organizations these days are utilizing numerous deployment environments, which their DevOps groups use to approve the necessary features prior to moving…
Microservices architecture
Microservice architecture is a method of software development to break down the application into small isolated functions which are called “services”. Services…