9
13

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 1 year has passed since last update.

ubuntu 18.04にvscodeをインストールする

Last updated at Posted at 2019-04-14

内容

この記事はUbuntu18.04にVSCode1.33.1をインストールした記事になっています。Ubuntu22.04にVSCode1.68.1をインストールした記事はこちらにあります。

環境

  • ubuntu 18.04
  • vscode 1.33.1

リポジトリを登録する

aptのレポジトリで使用するマイクロソフトのキーをダウンロードしてきます。

~$ curl https://packages.microsoft.com/keys/microsoft.asc | gpg --dearmor > microsoft.gpg

ダウンロードしてきたキーをaptに登録します。

~$ sudo install -o root -g root -m 644 microsoft.gpg /etc/apt/trusted.gpg.d/

aptのリポジトリを登録します

~$ sudo sh -c 'echo "deb [arch=amd64] https://packages.microsoft.com/repos/vscode stable main" > /etc/apt/sources.list.d/vscode.list'

インストール

aptでhttpsアクセスできるようにapt-transport-httpsをインストールします。

~$ sudo apt install apt-transport-https

vscodeをインストールします。

~$ sudo apt update
~$ sudo apt install code

起動はcodeです。

~$ code
9
13
1

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
9
13

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?