27
7

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.

nodenvでinstall出来るnodeのバージョンを確認したら最新が出てこなかった時

Last updated at Posted at 2019-11-01

nodenvでnodeのバージョンを管理していてnodeのバージョンを変える必要がある時

node 9.11.2 を node 12.12.0にしたいなど

【インストール出来るnodeの一覧を表示】
nodenv install -l
【結果】
〜
12.11.0
chakracore-dev
chakracore-nightly
〜

12.12.0がない

このようにnodeのバージョンが表示されない時は「node-build」が古いからだと思われ、ここにどうすればいいのか書いてあります
https://github.com/nodenv/node-build

Upgrading
# Via Homebrew
$ brew update && brew upgrade node-build

# As a nodenv plugin
$ cd "$(nodenv root)"/plugins/node-build && git pull

nodenvのプラグインとして使用しているのでcdを使ってnode-buildの階層まで移動

そしてgit pullするといいらしいです

その後もう一度

【インストール出来るnodeの一覧を表示】
nodenv install -l
【結果】
〜
12.11.0
12.12.0
chakracore-dev
chakracore-nightly
〜

をするとinstall出来るnodeのリストが更新されていると思うので、

nodenv install 12.12.0

で入れたいバージョンをinstall出来るようになっています

27
7
2

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

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?