npm installの時にエラーの対策を紹介します。
npm install vueした場合下記の方に出ました。
npm install vue
zsh: command not found: npm
CatalinaではHomebrewでインストールしたnodebrewではnpmが使えないことでした。
インストールされたらnodebrewアンインストールします。
$ nodebrew uninstall v10.16.1
$ nodebrew clear v10.16.1
$brew uninstall nodebrew
まずはPATHを設定します。
次はnodebrewをセットアップします。
% export PATH=$HOME/.nodebrew/current/bin:$PATH
% nodebrew setup
Fetching nodebrew...
Installed nodebrew in $HOME/.nodebrew
========================================
Export a path to nodebrew:
export PATH=$HOME/.nodebrew/current/bin:$PATH
========================================
インストールされてるのか確認します。
% nodebrew -ls
nodebrew 1.0.1
...省略
Example:
# install
nodebrew install v8.9.4
# use a specific version number
nodebrew use v8.9.4
今回はv.8.9.4をインストールします。
% nodebrew install-binary v8.9.4
Fetching: https://nodejs.org/dist/v8.9.4/node-v8.9.4-darwin-x64.tar.gz
######################################################################### 100.0%
Installed successfully
インストールしたバージョンを有効化します。
% nodebrew use v8.9.4
use v8.9.4
安定版でインストールする時にはinstall-binaryを使います。
% nodebrew install-binary stable
Fetching: https://nodejs.org/dist/v12.16.1/node-v12.16.1-darwin-x64.tar.gz
######################################################################### 100.0%
Installed successfully
~/.bash_profileにpathを追加します。
% echo 'export PATH=$HOME/.nodebrew/current/bin:$PATH' >> ~/.bash_profile
Nodeがインストールされてることを確認できます。
% node -v
v8.9.4
削除はこちらとなります。
% nodebrew uninstall v8.9.4
v8.9.4 uninstalled