Visual Studio CodeからMicrosoftの商標を削除したVSCodiumをUbuntuにインストール

Posted by 雅楽斎 on Friday, January 3, 2020

TOC

VSCodeとVSCodiumの違い

VSCodeことVisual Studio Codeはよくメンテナンスされていてインストールも簡単でソースコードがMITライセンスで提供されるソフトウェアですが、Microsoftがビルドしたバイナリは以下の点がソースコード配布とは異なります。

VSCodiumはMicrosoftが公開するソースをそのままビルドしたバイナリを配布するプロジェクトです。そのままビルドしたものなので、配布するバイナリはMITライセンスで提供されます。

VSCodium - Open Source Binaries of VSCode

The VSCodium project exists so that you don’t have to download+build from source. This project includes special build scripts that clone Microsoft’s vscode repo, run the build commands, and upload the resulting binaries for you to GitHub releases. These binaries are licensed under the MIT license. Telemetry is disabled.

VSCodiumのインストール

Ubuntu 19.10にVSCodiumをインストールします。

リポジトリの追加

# wget -qO - https://gitlab.com/paulcarroty/vscodium-deb-rpm-repo/raw/master/pub.gpg | apt-key add -
OK
# echo 'deb https://gitlab.com/paulcarroty/vscodium-deb-rpm-repo/raw/repos/debs/ vscodium main' | tee --append /etc/apt/sources.list.d/vscodium.list
deb https://gitlab.com/paulcarroty/vscodium-deb-rpm-repo/raw/repos/debs/ vscodium main

パッケージのインストール

# apt-get update
# apt-get install codium

スポンサーリンク


comments powered by Disqus