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?

Mac に Nodebrew で Node.js をインストール

Posted at

Mac に Nodebrew で Node.js をインストール

Nodebrew のインストールとセットアップ

インストール

$ brew install nodebrew

セットアップ

$ nodebrew setup

実行すると、以下のように表示されます。

Fetching nodebrew...
Installed nodebrew in $HOME/.nodebrew

========================================
Export a path to nodebrew:

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

パスを通す

$ echo 'export PATH=$HOME/.nodebrew/current/bin:$PATH' >> ~/.bash_profile
$ source ~/.bash_profile

Node.js のインストール

インストール可能なバージョンを確認

$ nodebrew ls-remote

最新の安定版をインストール

$ nodebrew install stable

特定のバージョンをインストール

$ nodebrew install v22.13.1

インストール済みのバージョン一覧を確認

$ nodebrew list

使用するバージョンを設定

$ nodebrew use v22.13.1
$ node -v
$ npm -v

以上で、Mac に Nodebrew を利用して Node.js をインストールする手順は完了です。

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?