2
2

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

macOS Catalinaにnvm

Last updated at Posted at 2020-01-03

macOS Catalinaにnvmを入れようとして検索したら出てくる記事が「この記事は3年以上前の〜」とかばっかりで不安になったのでアップデートしたエントリを。と言っても特に変更点とかがある訳ではないのですが。

ともあれインストール

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

最新版じゃないだろうけど一旦インストール。

.zshrcにも記述は追加されていた

ありがたい :pray:

% cat ~/.zshrc

(略)

export NVM_DIR="$HOME/.nvm"
[ -s "$NVM_DIR/nvm.sh" ] && \. "$NVM_DIR/nvm.sh"  # This loads nvm
[ -s "$NVM_DIR/bash_completion" ] && \. "$NVM_DIR/bash_completion"  # This loads nvm bash_completion

↓するか新規ウィンドウを開けば良い、と。

source ~/.zshrc

最新版にアップデート

% nvm --version
0.34.0
% cd ~/.nvm 
% git pull origin master
% nvm --version
0.35.2

つまり

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

なら一発ということですね。(2020/1/3現在)

最初から公式に行っておけばもっと早かった説

参考

Mac、Linux、Windows(WSL無し環境)でNode.jsバージョン切り替え方法を統一したい
nvm自体のバージョンを上げる

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

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?