VS Code on Ubuntu
Installing VS Code on Ubuntu 24.04
Here are the steps to install Visual Studio Code on Ubuntu 24.04:
Method 1: Using the APT package manager (Recommended)
-
Update your package lists:
Terminal window sudo apt update -
Install dependencies for downloading packages over HTTPS:
Terminal window sudo apt install -y apt-transport-https wget software-properties-common -
Import the Microsoft GPG key:
Terminal window
wget -qO- https://packages.microsoft.com/keys/microsoft.asc | gpg —dearmor > microsoft.gpg sudo install -D -o root -g root -m 644 microsoft.gpg /etc/apt/keyrings/microsoft.gpg
4. Add the VS Code repository:```bashsudo add-apt-repository "deb [arch=amd64] https://packages.microsoft.com/repos/vscode stable main"
-
Update package lists again:
Terminal window sudo apt update -
Install VS Code:
Terminal window sudo apt install code
Method 2: Using the .deb package
-
Download the .deb package from the official VS Code website:
Terminal window wget https://code.visualstudio.com/sha/download?build=stable&os=linux-deb-x64 -O vscode.deb -
Install the package:
Terminal window sudo apt install ./vscode.deb
Method 3: Using Snap
If you prefer using Snap packages:
sudo snap install code --classic
After installation, you can launch VS Code from your application menu or by typing code
in the terminal.