I\'m trying to install nodeJs into my Ubuntu 14.04 in order to use GruntJs.
I\'ve read about Ubuntu different way of doing it (issues?), so this is what I\'ve done i
Depending on how you installed your node, most of the time it might not be in /usr/bin/, in my own case it was I used nvm to install so my node was in ./nvm/versions.
Using this command which node
I found out the path, but to make the work easier you can run this command.
nodepath=$(which node); sudo ln -s $nodepath /usr/bin/node
the above command will get the location of your node and create a link for you.