Reputation: 41
When running brew install node I'm not able to get npm to build. Here's the end of the node install I'm getting...
==> /usr/local/bin/npm install --global npm@latest --prefix /usr/local
--global
npm@latest
--prefix
/usr/local
Warning: The post-install step did not complete successfully
You can try again using `brew postinstall node`
==> Summary
/usr/local/Cellar/node/0.10.32: 1678 files, 19M
Nothing doing when run brew postinstall node.
Many thanks for help!
Upvotes: 0
Views: 707
Reputation: 164
You could try the following :
$ brew uninstall node
$ rm -r ~/.npm
$ brew install node
Upvotes: 2