0
0

More than 1 year has passed since last update.

nvmを使って、Node.jsをインストールする

Posted at

nvmをインストールする

GitHubのnvmのサイトのインストール手順に従い、以下のコマンドを実行します。

curl -o- https://raw.githubusercontent.com/nvm-sh/nvm/v0.39.1/install.sh | bash

詳細は以下のサイトを参照してください。
https://github.com/nvm-sh/nvm

Node.jsをインストールする

以下のコマンドを実行します。
(Node.jsのバージョンの12の最新版をインストールしています。)

nvm install 12

インストール結果を確認する

以下のコマンドを実行します。

node -v
npm -v
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