26
15

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.

Ubuntu18にVisual Studio Codeをインストールする最も簡単な手順

Last updated at Posted at 2020-04-18

こちらのサイト「UbuntuにVSCodeをインストールする3つの方法」は、UbuntuにVisual Studio Codeをインストールする手順を調べると上位にくるけど、Microsoftのリポジトリを手動登録するのは公式の.debが自動でやってくれることを手動でやっているだけで無駄な手順だ。公式debファイルを使おう!

Visual Studio Code公式サイトdeb.pngボタンからダウンロードした.debファイルを使って、
必要なコマンドはたった3つ。

$ sudo apt install ./公式サイトからダウンロード.debファイル
$ sudo apt install -y apt-transport-https
$ sudo apt update

起動

$ code

もし万が一インストールされていないなら追加でこちらのコマンド。

$ sudo apt install -y code

Appendix

Visual Studio Code公式サイト https://code.visualstudio.com/
vsctop.png

26
15
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
26
15

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?