Node.js をインストールする手順
Node.js をコマンドでインストールする手順は以下の通りです。
- あらかじめ curl をインストール
- curl で nvm の install.sh をダウンロードして実行
- nvm の動作確認
- nvm から Node.js の LTS バージョンをインストール
- Node.js の動作確認
shell
# 1. あらかじめ curl をインストール
$ sudo apt-get install curl
# 2. curl で nvm の install.sh をダウンロードして実行
$ curl -o- https://raw.githubusercontent.com/nvm-sh/nvm/v0.39.1/install.sh | bash
# 3. nvm の動作確認 (コマンド認識しなければ、コンソールもしくはOSを再起動する)
$ nvm ls
# 4. nvm から Node.js の LTS バージョンをインストール
$ nvm install --lts
# 5. Node.js の動作確認
$ node -v
v16.15.0
以上で完了です。
参考
-
[Microsoft] Node.js を Linux 用 Windows サブシステム (WSL2) にインストールする
https://docs.microsoft.com/ja-jp/windows/dev-environment/javascript/nodejs-on-wsl