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

M1 MacBookにnvmをインストールする方法

Posted at

#nvmのインストール#

ターミナルを以下の記事を参考に起動する(下記のコマンドを実行する)

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

この際、Profile not found.と怒られた場合は以下のコマンドでProfileを作成してあげれば解決できる。

source ~/.nvm/nvm.sh

#Node.jsのインストール#

nvm i v14.15.1

上記は2020/12/12時点のLTS。nvmのバージョンは特に指定がなければ最新版のLTSを使用すると良い。(LTSとはLong Time Supportの略。長期的なサポートを保証するという意味。)

npm install
% npm -v
6.14.8
% node -v
v14.15.1

これでNodeが使えるようになりました。

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