After unpack of tar.gz binaries tried to call npm -g install to get dependencies of my package.json but got
/usr/bin/env: node: no such file or directory
And when I replace path inside npm-cli.js
!/usr/bin/env node
with path of downloaded node
!#//environment/nodes/node-v6.3.1-linux-x64/bin/node
all start work!
I'm not sure that I do right with reporting that issue(maybe its fixed already) - but I spent few hours to fix it(google was useless). Maybe will be useful to update explanation of tar.gz installation.
After unpack of tar.gz binaries tried to call npm -g install to get dependencies of my package.json but got
And when I replace path inside npm-cli.js
with path of downloaded node
all start work!
I'm not sure that I do right with reporting that issue(maybe its fixed already) - but I spent few hours to fix it(google was useless). Maybe will be useful to update explanation of tar.gz installation.