运行brew install node时,我无法获取npm进行构建。这是我得到的节点安装的结尾...
==> /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运行brew安装后配置节点时不执行任何操作。
非常感谢您的帮助!
发布于 2014-10-23 06:11:01
您可以尝试执行以下操作:
$ brew uninstall node
$ rm -r ~/.npm
$ brew install nodehttps://stackoverflow.com/questions/26517764
复制相似问题