0
1

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

UbuntuにVisual Studio Codeをインストールする方法【2024年12月時点】

Posted at

概要

Ubuntu PCにVSCodeをインストールしたので、インストール方法を備忘録として投稿します。

目次

sudo apt update
sudo apt install software-properties-common apt-transport-https wget

2. Microsoft の GPG キーを追加
GPGの役割は、ダウンロードするパッケージが正規に提供されているか信頼性を確認するために実行します。

wget -q https://packages.microsoft.com/keys/microsoft.asc -O- | sudo apt-key add -

3. リポジトリを追加
レポジトリの役割は、パッケージの提供元を登録します。

sudo add-apt-repository "deb [arch=amd64] https://packages.microsoft.com/repos/code stable main"

4. VSCodeのインストール

sudo apt update
sudo apt install code

5. VSCodeの起動

code
  • おわりに
  • 無事にUbuntu PC上にインストールできました。
0
1
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
0
1

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?