あなたの現在のノードのバージョンをアンインストールしてみてnvm
またはbrew
を使用して再インストールします。
をノードが住んでいる場所を見つけるには:command -v node && command -v npm
ここのコメントのいくつかに記載されているように、これらのディレクトリを削除します。https://github.com/nodejs/node/issues/9377
これを通過する人にはこれを投稿してください。 npm up -g
を使用してnpm
バージョンを更新できます。ここでnvm
を介してノード4.7.3
をインストールする私のコンソールからの出力です:
[email protected]:~/Desktop/demo$ nvm install 4.7.3
Downloading and installing node v4.7.3...
Downloading https://nodejs.org/dist/v4.7.3/node-v4.7.3-darwin-x64.tar.gz...
######################################################################## 100.0%
Computing checksum with shasum -a 256
Checksums matched!
Now using node v4.7.3 (npm v2.15.11)
[email protected]:~/Desktop/demo$ npm up -g
/Users/user/.nvm/versions/node/v4.7.3/bin/npm -> /Users/user/.nvm/versions/node/v4.7.3/lib/node_modules/npm/bin/npm-cli.js
[email protected] /Users/user/.nvm/versions/node/v4.7.3/lib/node_modules/npm
[email protected]:~/Desktop/demo$ npm -v
4.2.0
[email protected]:~/Desktop/demo$
https://github.com/nodejs/node/issues/9377 –
あなただけの 'npm'バージョンを更新するには、' NPMアップ-g'を使用することができます... – djthoms