↧
nodejs vs node on ubuntu 12.04
I installed nodejs on ubuntu from instructions given here When I write node --version in the terminal I see this : -bash: /usr/sbin/node: No such file or directory I can see node in the /usr/sbin/...
View ArticleAnswer by Sajibe Kanti for nodejs vs node on ubuntu 12.04
in my case, I just used thissudo npm cache clean -fsudo npm install -g nsudo n stableThis one will Install a Stable VersionThen just make it symlinksudo ln -s /usr/local/bin/node
View ArticleAnswer by nikhil654321 for nodejs vs node on ubuntu 12.04
First install the recommended versionTry in cmd node -vIf command work than try it in vs commandIf it still not working "check path " in environment variable;If env is set than recheck if it is working...
View Article