🐒
Macにnodebrew・Node.js・yarnをインストールする
環境
- MacOS Catalina 10.15.7
- zsh
nodebrew install
ターミナルで以下のコマンドを実行してソースのダウンロードをする
$ curl -L git.io/nodebrew | perl - setup
% Total % Received % Xferd Average Speed Time Time Time Current
Dload Upload Total Spent Left Speed
0 0 0 0 0 0 0 0 --:--:-- --:--:-- --:--:-- 0
0 0 0 0 0 0 0 0 --:--:-- 0:00:01 --:--:-- 0
0 0 0 0 0 0 0 0 --:--:-- 0:00:01 --:--:-- 0
100 24634 100 24634 0 0 12010 0 0:00:02 0:00:02 --:--:-- 150k
Fetching nodebrew...
Installed nodebrew in $HOME/.nodebrew
========================================
Export a path to nodebrew:
export PATH=$HOME/.nodebrew/current/bin:$PATH
========================================
.zshrc
に以下のパスを追加する
export PATH=$HOME/.nodebrew/current/bin:$PATH
追加を終えたら適用するためのコマンドを実行しnodebrewのインストールは完了
source ~/.zshrc
Node.js install
インストール可能なNode.jsを確認する
$ nodebrew ls-remote
バージョンを指定してインストールする
$ nodebrew install-binary vX.X.X
stable版をinstallしたい場合はこちら
$ nodebrew install-binary stable
Fetching: https://nodejs.org/dist/v14.16.0/node-v14.16.0-darwin-x64.tar.gz
############################################################################################### 100.0%
Installed successfully
nodeがインストールされていることを確認する
$ nodebrew ls
v14.16.0
current: none
使用するnodeのバージョンを指定する
$ nodebrew use v14.16.0
use v14.16.0
nodeが使えるか確認する
$ node -v
v14.16.0
$ npm -v
6.14.11
yarn install
yarnをインストールする
$ npm install -g yarn
インストールされているか確認する
$ yarn -v
1.22.10
Discussion