0
0

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.

aptからnodejsとnpmをインストールし、nから最新版のNode.jsのインストール

Posted at

aptからnodejsとnpmをインストール

$ sudo apt install nodejs npm

npmからnパッケージをインストール

$ sudo npm install -g n

nから最新版のNode.jsをインストール

$ sudo n latest

nから最新のLTS版のNode.jsのインストール

$ sudo n lts

任意のバージョンのNode.jsのインストール

$ n ls-remote
# 12.8.1をインストールしたい場合
$ sudo n 12.8.1

参考

Ubuntu18.04で任意のバージョンのNode.jsをインストールする方法

0
0
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
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?