sumakokima2 / resium-sample2

0 stars 0 forks source link

node.jsのインストール #20

Open sumakokima2 opened 4 years ago

sumakokima2 commented 4 years ago

0. 手順

  1. Home-brewのインストール
  2. nodebrewのインストール
  3. node.jsのインストール

1. Home-brewのインストール:Home-brew

macOSオペレーティングシステム(およびLinux)上のパッケージ管理システムのひとつである wikipedia

ターミナルで以下を実行

/usr/bin/ruby -e "$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/master/install)"

インストールできたか確認

$ brew -v

2.nodebrewのインストール

Node.jsのバージョン管理ツール。

ターミナルで以下を実行

$ brew install nodebrew

インストールできたか確認

$ nodebrew -v

3.node.jsのインストール

インストールできるnode.jsの確認

$ nodebrew ls-remote

ターミナルで以下を実行

最新版の場合
$ nodebrew install-binary latest

安定版の場合
$ nodebrew install-binary stable

ディレクトリの作成

$ mkdir -p ~/.nodebrew/src

インストールされたnodeを有効化

$ node brew ls
$ nodebrew use v7.1.0 //lsで表示されたバージョンを記入

環境パスを通す

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

または

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

ターミナル再起動してから確認

$ node -v