7
10

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 3 years have passed since last update.

nodebrew から nodenv に移行しました

Posted at

nodebrew はディレクトリごとに利用するバージョンが切り替えられないので nodenv へ移行しました。
そのときの手順メモ。 mac OS で brew で nodebrew をいれてありました。

利用しているバージョンを控えておく

$ nodebrew list

nodebrew をアンインストール

$ brew update
$ brew uninstall nodebrew

利用しているシェルの設定ファイルから以下を削除する。

export PATH=$HOME/.nodebrew/current/bin:$PATH

nodenv をインストール

まずは README を読む
https://github.com/nodenv/nodenv

$ brew install nodenv

シェルの設定に以下を追加しておく

eval "$(nodenv init -)"

nodenv の基本的な使い方

利用できるバージョンの確認

$ nodenv install --list

指定したバージョンのインストール

$ nodenv install <version>

インストール後はrehashを

$ nodenv rehash

インストールされているバージョンの確認

$ nodenv versions

global バージョンの指定

$ nodenv global <version>

local バージョンの指定

プロジェクトのディレクトリに移動して

$ nodenv local <version>

node のバージョンが切り替わることを確認

$ node -v
7
10
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
7
10

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?