Visual Studio Code editor
Visual Code Studio adalah sebuah code editor gratis yang bisa dijalankan di perangkat desktop berbasis Windows, Linux, dan MacOS. Code editor ini dikembangkan oleh salah satu raksasa teknologi dunia, Microsoft.
Installation
Method 1: Install Visual Studio Code on Debian 12 Using Snap
Step 1: Install snapd
sudo apt install snapd
Step 2: Enable Snap
sudo systemctl enable snapd && sudo systemctl start snapd
Step 3: Install VS Code
sudo snap install code --classic
Done,you can launce VS code using Terminal with type:
code
or find on Launcher
Method 2: Install VS Code on Debian 12 Using the .deb
File
Navigate to the Downloads page on the VS Code’s official website and click on the dropdown menu to choose the “.deb” file.
using terminal type:
sudo apt install ./<deb file name>
Method 3: Install Visual Studio Code on Debian 12 Using the Flatpak
Step 1: Install Flatpak
sudo apt install flatpak
Step 2: Add the flathub Repository
flatpak remote-add --if-not-exists flathub https://flathub.org/repo/flathub.flatpakrepo
Step 3: Install VS Code
flatpak install flathub com.visualstudio.code