Cannot find node-gyp

2019-04-11 04:06发布

I installed node v0.8.22 with homebrew. I have my node binary in /usr/local/bin/ but I need to recompile a node add-on with node-gyp but it cannot seem to find it in my PATH. I tried running npm install -g node-gyp but it's still not in my path.

I noticed that npm -g installs everything into /usr/local/share/npm/bin/. Does this mean I need to add this to my PATH?

2条回答
神经病院院长
2楼-- · 2019-04-11 04:29

I noticed that npm -g installs everything into /usr/local/share/npm/bin/. Does this mean I need to add this to my PATH?

Yes.

查看更多
Evening l夕情丶
3楼-- · 2019-04-11 04:41

As j_mcnally recommends, you should try adding /usr/local/share/npm/bin/ to your path. There should be a symlink to node-gyp here, which should resolve your problem.

查看更多
登录 后发表回答