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

はじめての記事投稿

Nodeバージョン管理(NVM)を導入方法、Windows/mac/linux

Posted at

NVMを使いやすいということはなぜですか?

異なるプロジェクトを開発するとき、互換性であるバージョンを切り替えできるためです。 互換性がないバージョンを使用したら不明なエラーが出てくる場合もあります。

インストール

Windows:

nvm-windowsを使用します。
まずはこちらからをnvm-setup.exeをダウンロードし実行しましょう。

インストールが終わると、すべてコマンドプロンプト(VSCODE内のターミナルも)を終了しましょう。

またコマンドプロンプトを開きます。nvmは見つからない場合はwindowsからログアウトし再ログインしましょう。 nodeインストールするとき許可関係があるエラーが出たら、管理者/adminstrator コマンドプロンプトを使用しましょう。

下記の使い方をご覧ください。

Mac:

ターミナルを開いて、以下のコマンドを実行しましょう

touch ~/.zshrc

bashのターミナル場合:

touch ~/.bash_profile

MacとLinux:

ターミナルを開いて、以下のコマンドを実行しましょう

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

すべてターミナルを終了しましょう。また新しいターミナルを開きます。 nvmが見つからないエラーが出たら以下に確認しましょう。

ターミナルタイプにより異なります:

bashなら:

source ~/.bashrc

zshなら:

source ~/.zshrc

kshなら:

. ~/.profile

詳しいトラブルシューティングはこちらをご覧ください;
https://github-com.translate.goog/nvm-sh/nvm?_x_tr_sl=en&_x_tr_tl=ja&_x_tr_hl=en&_x_tr_pto=wapp#installing-and-updating

使い方:

最新バージョンをインストール

nvm install node

許可エラーが出たら、Windowsでコマンドプロンプトを管理者権限で起動しましょう

バージョン14.7.0をインストール

nvm install 14.7.0

バージョン14.7.0を選択

nvm use 14.7.0

インストールされたバージョンを表示

nvm ls
1
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
1
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?