0
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?

【nodenv】nodenvのコマンド

Posted at

久しぶりにnpm iしたら環境更新されていたのか

nodenv: version `18.17.0' is not installed

と出たのでバージョン上げようと思ったら
コマンドをするっと忘れていたのでメモ。
(次も絶対コマンド忘れているはず)

この手の記事いっぱいあるけれど自分のために書いちゃう。

コマンド

・インストール可能なバージョン一覧

nodenv install -l

一覧にインストールしたいバージョンがなかったらこれ↓を試してから※

cd "$(nodenv root)"/plugins/node-build && git pull

参照

・インストール

nodenv install インストールしたいバージョンをここに

・リハッシュ

nodenv rehash

・今入れてるバージョン一覧と確認

nodenv versions

今のバージョンには*がついている

・バージョンの設定(変更)

nodenv local バージョンをここに
nodenv global バージョンをここに

基本的にローカルではなくグローバルで設定。

※2024-6-28

nodenv installで出した一覧に載っていなくても入れたいバージョンを入れることができるっぽい雰囲気。

18.17.0が更新しても一覧に出てこなかったので、試しに
nodenv install 18.17.0したらインストールがスタートしました。

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

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?