1
3

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 3 years have passed since last update.

Ubuntuに最速でVisual Studio Codeをインストールする

Posted at

結論

$ sudo apt install -y apt-transport-https \
      echo -e "deb [arch=amd64] https://packages.microsoft.com/repos/vscode stable main" | sudo tee /etc/apt/sources.list.d/vscode.list \
      wget -O - https://packages.microsoft.com/keys/microsoft.asc | sudo apt-key add - \
      sudo apt update \
      sudo apt install -y code

今まで公式サイトから.debファイルをダウンロードしてインストールしていたが、めんどくさいのでPPA経由でインストールできないか調べてみた。いろんなやり方があるようだが、公開鍵が.asc形式なら.gpg形式に変換しなくてもいいのではないかと思いメモ。

前提

  • snapやflatpakではなくaptを使う

解説

$ sudo apt install -y apt-transport-https

MicrosoftのPPAがhttpsのため、apt-transport-httpsというパッケージを入れてあげる必要があるらしい。

$ echo -e "deb [arch=amd64] https://packages.microsoft.com/repos/vscode stable main" | sudo tee /etc/apt/sources.list.d/vscode.list

PPAのファイルを作成する。ファイルの場所のパーミッションの関係で、リダイレクトではなくteeコマンドを使用する。

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

公開鍵を取得してaptに追加する。あとはパッケージリストを更新してインストールするだけ。

参考文献

1
3
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
1
3

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?