How to Install VSCodium on Debian 12

Choose a different version or distribution

Introduction

Before we begin talking about how to install VSCodium on Debian 12, let's briefly understand – What is VSCodium?

VSCodium is a free and open-source code editor based on Visual Studio Code. Developed by Microsoft, it offers a wide range of features for programmers. VSCodium provides a streamlined and efficient coding experience with its extensive library of extensions.

It supports various programming languages and allows customization to suit individual preferences. With its user-friendly interface and powerful functionalities, VSCodium is an excellent choice for software developers and coding enthusiasts looking for a reliable code editor.

In this tutorial, you will install VSCodium on Debian 12. We will also address a few FAQs on how to install VSCodium on Debian 12.

Advantages of VSCodium

  1. Open source: VSCodium is completely open source, allowing for transparency and community contributions.
  2. Feature-rich: It offers a multitude of features like debugging, Git integration, IntelliSense, and extensions.
  3. Cross-platform: VSCodium works seamlessly on Windows, macOS, and Linux, enabling developers to code on any operating system.
  4. Extensibility: Its extensive library of extensions empowers users to customize and enhance their coding experience.
  5. User-friendly interface: VSCodium provides a clean and intuitive interface, making it easy for developers to navigate and write code efficiently.

Step 1- Import VSCodium GPG Key

The first step in installing VSCodium is to add the GPG key for VSCodium to your computer.

The gpg key for VSCodium can be downloaded using wget, so make sure you have it installed on your computer.

Your system should now have VSCodium's GPG added if you execute the command below exactly as is.

wget -qO - https://gitlab.com/paulcarroty/vscodium-deb-rpm-repo/raw/master/pub.gpg \
    | gpg --dearmor \
    | sudo dd of=/usr/share/keyrings/vscodium-archive-keyring.gpg

Step 2- Add VSCodium Repository

After adding the GPG key, you can now add the VSCodium repository to your computer.

Use the following command to accomplish this.

echo 'deb [ signed-by=/usr/share/keyrings/vscodium-archive-keyring.gpg ] https://download.vscodium.com/debs vscodium main' \
    | sudo tee /etc/apt/sources.list.d/vscodium.list

The above command will add the vscodium.list file to the sources directory's add VSCodium repository.

Step 3- Update your system

After adding the GPG key and the VSCodium repository, keep updating your system.

sudo apt update

As soon as your system is updated, the VSCodium repository will activate, allowing you to install VSCodium on your computer using this repository.

Step 4- Install VSCodium

After installing VSCodium on your computer, you should be ready to go.

sudo apt install codium

Launching VSCodium

You should now have VSCodium installed on your Debian 12 system.

Search > Application Finder > VSCodium

And VSCodium will launch:

FAQs to Install VSCodium on Debian 12

Is VSCodium available in the Debian 12 package repositories?

No, VSCodium is not available in the Debian 12 package repositories. It needs to be manually downloaded and installed from the official VSCodium website.

Can I install VSCodium using the apt package manager?

No, VSCodium is not available in the default Debian repositories for installation through apt. However, you can use the manual installation method as mentioned earlier.

Will VSCodium automatically receive updates after installation?

Yes, once installed, VSCodium will automatically prompt you for updates whenever a new version is available. You can then choose to update it through the provided interface.

Can I install Visual Studio Code extensions on VSCodium?

Yes, VSCodium supports Visual Studio Code extensions. You can browse and install extensions from within the editor to enhance your coding experience.

Will uninstalling VSCodium delete my settings and configurations?

No, uninstalling VSCodium does not delete your settings and configurations. They are stored in your home directory, separate from the application directory.

Can I install VSCodium alongside Visual Studio Code?

Yes, VSCodium can be installed alongside Visual Studio Code without conflicts, as they are separate applications and use different configurations.

Does VSCodium require internet access to function?

VSCodium can function without an internet connection. However, some features like extension installation and updates require internet access.

Conclusion

We hope this tutorial helped you understand how to install VSCodium on Debian 12.

If you have any queries, please leave a comment below, and we’ll be happy to respond to them for sure.