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 snapdStep 2: Enable Snap
sudo systemctl enable snapd && sudo systemctl start snapdStep 3: Install VS Code
sudo snap install code --classicDone,you can launce VS code using Terminal with type:
codeor 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 flatpakStep 2: Add the flathub Repository
flatpak remote-add --if-not-exists flathub https://flathub.org/repo/flathub.flatpakrepoStep 3: Install VS Code
flatpak install flathub com.visualstudio.code