vscodium.github.io/_posts/2000-01-05-install.md
Matthias Schneider a276504fdd fixed missing sudo
2019-09-07 01:57:00 +02:00

3.6 KiB

title, bg, color
title bg color
Install blue black

Use a Package Manager

Install with Brew (Mac)

If you are on a Mac and have Homebrew installed:

brew cask install vscodium

Note for Mac OS X Mojave users: if you see "App can't be opened because Apple cannot check it for malicious software" when opening VSCodium the first time, you can right-click the application and choose Open. This should only be required the first time opening on Mojave.

Install with Chocolatey (Windows)

If you use Windows and have Chocolatey installed (thanks to @Thilas):

choco install vscodium

Install with Scoop (Windows)

If you use Windows and have Scoop installed:

scoop bucket add extras
scoop install vscodium

Install with Package Manager (Linux)

Parrot OS:

VSCodium is pre-installed in Parrot OS.

In case you don't find it by default, you can retrieve it from the official Parrot repo

sudo apt update && sudo apt install vscodium

@paulcarroty has set up a repository for VSCodium here. The instructions below are adapted from there. Any issues installing VSCodium using your package manager should be directed to that repository's issue tracker.

Debian / Ubuntu (deb package):

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 -

Add the repository:

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

Update then install vscodium:

sudo apt update && sudo apt install codium

Fedora / Centos / OpenSUSE (rpm package):

Add the GPG key of the repository:

rpm --import https://gitlab.com/paulcarroty/vscodium-deb-rpm-repo/raw/master/pub.gpg

Add the repository:

  • Fedora/RHEL:

    printf "[gitlab.com_paulcarroty_vscodium_repo]\nname=gitlab.com_paulcarroty_vscodium_repo\nbaseurl=https://gitlab.com/paulcarroty/vscodium-deb-rpm-repo/raw/repos/rpms/\nenabled=1\ngpgcheck=1\nrepo_gpgcheck=1\ngpgkey=https://gitlab.com/paulcarroty/vscodium-deb-rpm-repo/raw/master/pub.gpg" |sudo tee -a /etc/yum.repos.d/vscodium.repo
    
  • openSUSE/SUSE:

    printf "[gitlab.com_paulcarroty_vscodium_repo]\nname=gitlab.com_paulcarroty_vscodium_repo\nbaseurl=https://gitlab.com/paulcarroty/vscodium-deb-rpm-repo/raw/repos/rpms/\nenabled=1\ngpgcheck=1\nrepo_gpgcheck=1\ngpgkey=https://gitlab.com/paulcarroty/vscodium-deb-rpm-repo/raw/master/pub.gpg" |sudo tee -a /etc/zypp/repos.d/vscodium.repo
    

Install the software:

  • Fedora/RHEL:
    dnf install codium
    
  • OpenSUSE/SUSE:
    zypper in codium
    

Flatpak Option (Linux)

VSCodium is not available as a Flatpak app, but @amtlib-dot-dll has done significant work to package up the open source build of Visual Studio Code without telemetry, very similarly to VSCodium. That package is available here and the build repo is here.