Programster's Blog

Tutorials focusing on Linux, programming, and open-source

Install VSCodium IDE on Debian/Ubuntu

VSCodium is a community-driven, freely-licensed binary distribution of Microsoft’s editor VSCode.

Steps

cd /tmp && \
  wget -O codium.deb https://github.com/VSCodium/vscodium/releases/download/1.70.2.22230/codium_1.70.2.22230_amd64.deb \
  && sudo dpkg -i codium.deb \
  && rm codium.deb

You may wish to check the releases page to see if this is actually the latest release.

Last updated: 31st August 2022
First published: 1st July 2021