You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
node is the standard name for the binary. I'm not sure why it's nodejs on Ubuntu, but in any case you'll need to go with option #2 and symlink it, or in your .profile or whatever file do alias node="nodejs".
I receive the following error:
/usr/bin/env: node: No such file or directory
Steps to reproduce:
sudo npm -g install sails
sails new testProject
Enviorment:
Ubuntu 14.04
SailsJS v0.9.16
Possible solutions:
/usr/local/bin/sails
should be:#!/usr/bin/env nodejs
instead of#!/usr/bin/env node
node
command like so:sudo ln -s /usr/bin/nodejs /usr/local/bin/node
I've installed nodejs using
sudo apt-get install nodejs
Can anyone confirm this ?
The text was updated successfully, but these errors were encountered: