> ## Content Index
> Fetch the complete content index at: https://itsfoss.com/llms.txt
> Use this file to discover other available public pages before exploring further.

# VSCodium: 100% Open Source Version of Microsoft VS Code
- URL: https://itsfoss.com/vscodium/
- Published: 2019-04-09T07:27:16.000Z
- Updated: 2023-09-14T10:57:39.000Z
- Description: VSCodium is a clone of Microsoft’s popular Visual Studio Code editor. It’s identical to VS Code with the single biggest difference that unlike VS Code, VSCodium doesn’t track your usage data.
- Author: Abhishek Prakash
- Tags: Applications

Microsoft’s [Visual Studio Code](https://code.visualstudio.com/?ref=itsfoss.com) is an excellent editor not only for web developers but also for other programmers. Due to its features, it’s considered one of the best open source code editors.

Yes, it’s one of the many open source products from Microsoft. You can [easily install Visual Studio Code in Linux](https://itsfoss.com/install-visual-studio-code-ubuntu/) thanks to the ready to use binaries in the form of DEB, RPM and Snap packages.

And there is a problem which might not be an issue for a regular user but significant to an open source purist.

The ready to use binaries Microsoft provides are not open source.

Confused? Let me explain.

The source code of VS Code is open sourced under MIT license. You can access it on the [GitHub](https://github.com/Microsoft/vscode?ref=itsfoss.com). However, the [installation files that Microsoft has created contain proprietary telemetry/tracking](https://github.com/Microsoft/vscode/issues/60?ref=itsfoss.com#issuecomment-161792005).

This tracking basically collects usage data and sends it to Microsoft to ‘help improve their products and services’. Telemetry reporting is common with software products these days. Even [Ubuntu does that but with more transparency](https://itsfoss.com/ubuntu-data-collection-stats/).

You can [disable the telemetry in VS Code](https://code.visualstudio.com/docs/supporting/faq?ref=itsfoss.com#%5Fhow-to-disable-telemetry-reporting) but can you trust Microsoft completely? If the answer is no, then what are your options?

You can build it from the source code and thus keep everything open source. But [installing from source code](https://itsfoss.com/install-software-from-source-code/) is not always the prettiest option specially in today’s world when we are so used to of having binaries.

Another option is to use VSCodium!

## VSCodium: 100% open source form of Visual Studio Code

![VSCodium Completely Open Source version of VS Code](https://itsfoss.com/content/images/wordpress/2019/04/vscodium-800x450.png)

[VSCodium](https://vscodium.com/?ref=itsfoss.com) is a clone of Microsoft’s Visual Studio Code. This project’s sole aim is to provide you with ready to use binaries without Microsoft’s telemetry code.

This solves the problem where you want to use VS Code without the proprietary code from Microsoft but you are not comfortable with building it from the source.

Since [VSCodium is a clone of VS Code](https://github.com/VSCodium/vscodium?ref=itsfoss.com), it looks and functions exactly the same as VS Code.

Here’s a screenshot of the first run of VS Code and VSCodium side by side in Ubuntu. Can you distinguish one from another?

![VScode vs VSCodium](https://itsfoss.com/content/images/wordpress/2019/04/vscodium-vs-vscode-800x450.png)

Can you guess which is VSCode and VSCodium?

If you have not been able to distinguish between the two, look at the bottom.

![Microsoft VSCode Tracking](https://itsfoss.com/content/images/wordpress/2019/04/microsoft-vscode-tracking-800x259.png)

That’s Microsoft

Apart from this and the logo of the two applications, there is no other noticeable difference.

![VS Code vs VSCodium](https://itsfoss.com/content/images/wordpress/2019/04/vscodium-and-vscode-800x220.jpg)

VSCodium and VS Code in GNOME Menu

## Installing VSCodium on Linux

While VSCodium is available in some distributions like Parrot OS, you’ll have to add additional repositories in other Linux distributions.

You can use the following commands to [install VSCodium on Ubuntu](https://itsfoss.com/install-vscodium-ubuntu/) and other Debian-based distros.

First, add the GPG key of the repository:

```
wget -qO - https://gitlab.com/paulcarroty/vscodium-deb-rpm-repo/raw/master/pub.gpg | sudo apt-key add -
```

And then add the repository itself:

```
echo 'deb https://gitlab.com/paulcarroty/vscodium-deb-rpm-repo/raw/repos/debs/ vscodium main' | sudo tee --append /etc/apt/sources.list.d/vscodium.list
```

Now update your system and install VSCodium:

```
sudo apt update && sudo apt install codium
```

If you use Snap, you can easily install it using:

```
snap install codium --classic

```

You can find the [installation instructions for other distributions on its page](https://vscodium.com/?ref=itsfoss.com#install). You should also read the [instructions about migrating from VS Code to VSCodium](https://vscodium.com/?ref=itsfoss.com#migrate).

Furthermore, you may also download the latest version of VS Codium from their release page:

[Download VS Codium](https://github.com/VSCodium/vscodium/releases?ref=itsfoss.com)

## What do you think of VSCodium?

There are many [open source code editors](https://itsfoss.com/best-modern-open-source-code-editors-for-linux/) available. VS Code is the most popular among them all if I am not mistaken, at least among the GUI-based editors.

[8 Best Open Source Code Editors for LinuxLooking for the best text editors in Linux for coding? Here’s a list of the best code open source code editors for Linux.![](https://itsfoss.com/content/images/size/w256h256/2022/12/android-chrome-192x192.png)It's FOSSAbhishek Prakash![](https://itsfoss.com/content/images/2023/02/modern-code-editors.png)](https://itsfoss.com/best-modern-open-source-code-editors-for-linux/)

Personally, I like the concept of VSCodium. To use the cliche, the project has its heart in the right place. I think Linux distributions committed to open source may even start including it in their official repository.

What do you think? Is it worth switching to VSCodium or would you rather opt out of the telemetry and continue using VS Code?

And please, no “I use Vim” comments :D