Skip to content
Follow
Ubuntu Linux

Install Visual Studio Code on Ubuntu: Step-by-Step Guide

Richard
Written by
Richard
May 25, 2022 Updated Jul 14, 2026 2 min read
How to Use Sticky Notes in Windows 11
How to Use Sticky Notes in Windows 11

Visual Studio Code on Ubuntu installs using its official software list, making sure you get the newest version automatically.

Visual Studio Code, or VS Code, is a free code editor from Microsoft that works on Windows, Linux, and macOS.

Using the official method for installing VS Code on Ubuntu is the best way. It keeps your software up-to-date without you needing to do anything extra, which is great for coding projects.

VS Code includes helpful tools like code color-coding, smart suggestions as you type, and ways to fix errors.

⚡ Quick Answer

Open your terminal and run `sudo snap install code –classic` to install VS Code via Snap. Alternatively, add the Microsoft APT repository and then run `sudo apt update && sudo apt install code`.

How to install VS Code on Ubuntu Linux

You can install VS Code using one of the two methods below. Most users prefer the first method.

The Snap Store offers the easiest way to install Visual Studio Code (VS Code) on your Ubuntu system. Installing VS Code through the Snap Store ensures that VS Code automatically updates itself, keeping your software current without manual intervention.

  1. Open your terminal.
  2. Run this command: sudo snap install code --classic

Method 2 Installing via APT Repository

Installing Visual Studio Code on Ubuntu using the APT repository is a reliable method that lets your system automatically update the program. This approach ensures you always have the latest features and security fixes without manual intervention. First, you’ll check your computer’s architecture to make sure it’s compatible with the software.

📝Good to Know
First, check your system architecture to ensure compatibility: dpkg --print-architecture. Most modern systems use amd64.

Install the necessary helper tools:

🐧Bash / Shell
sudo apt update && sudo apt install wget gpg

Now, import the Microsoft GPG key to your keyring folder:

🐧Bash / Shell
wget -qO- https://packages.microsoft.com/keys/microsoft.asc | gpg --dearmor > packages.microsoft.gpg
sudo install -D -o root -g root -m 644 packages.microsoft.gpg /etc/apt/keyrings/packages.microsoft.gpg

Next, add the repository source file for your Ubuntu system:

Command Prompt
echo "deb [arch=amd64 signed-by=/etc/apt/keyrings/packages.microsoft.gpg] https://packages.microsoft.com/repos/code stable main" | sudo tee /etc/apt/sources.list.d/vscode.list > /dev/null

Finally, update your package list and install the editor:

🐧Bash / Shell
sudo apt update
sudo apt install code

VS Code is now installed. You can find it in your application menu.

Visual Studio Code interface running on an Ubuntu Linux desktop environment
vs code install on ubuntu

Post-Installation

After you install Visual Studio Code on Ubuntu, adding extensions can really boost your coding experience by adding new features.

  • Remote Development pack: Allows you to code on remote machines or inside containers.
  • GitHub Copilot: Uses AI to help you write code faster.

Conclusion

Visual Studio Code is a versatile, feature-rich code editor compatible with various platforms. Git control, syntax highlighting, and code completion are among the features supported by VS Code. By following these steps, developers can seamlessly install and utilize VS Code for their coding projects.

Was this guide helpful?

Was this helpful?
Richard

About the Author

Richard

Tech Writer, IT Professional

Richard, a writer for Geek Rewind, is a tech enthusiast who loves breaking down complex IT topics into simple, easy-to-understand ideas. With years of hands-on experience in system administration and enterprise IT operations, he’s developed a knack for offering practical tips and solutions. Richard aims to make technology more accessible and actionable. He's deeply committed to the Geek Rewind community, always ready to answer questions and engage in discussions.

📚 Related Tutorials

How to Install Ubuntu Linux
Ubuntu Linux How to Install Ubuntu Linux
Install Visual Studio Code Web on Ubuntu 24.04
Ubuntu Linux Install Visual Studio Code Web on Ubuntu 24.04
How to Install GNOME Desktop on Ubuntu 24.04
Ubuntu Linux How to Install GNOME Desktop on Ubuntu 24.04
How to Install KDE Desktop on Ubuntu 24.04
Ubuntu Linux How to Install KDE Desktop on Ubuntu 24.04

No comments yet — be the first to share your thoughts!

Leave a Comment

Your email address will not be published. Required fields are marked *