On 19/03/2014 17:57, Jaimin Pandya wrote: > I am completely new for node.js. By reading tutorials I downloaded > "node-v0.10.26". > > But I don't know how to install it on ubuntu12.04?
cd into the directory where you downloaded node then untar it. Now run './configure' (without the quotes), then 'make', then 'sudo make install' which will install it into /usr/local. You'll need to install 'build-essential' before you compile it: 'sudo apt-get update sudo apt-get install build-essential' Cheers, Phil... -- currently (ab)using CentOS 6.5, Debian Squeeze & Wheezy, Fedora 19 & 20, OS X Snow Leopard, RHEL 7, Ubuntu Precise & Saucy GnuGPG Key : http://phildobbin.org/publickey.asc Based in London, UK -- You received this message because you are subscribed to the Google Groups "Ruby on Rails: Talk" group. To unsubscribe from this group and stop receiving emails from it, send an email to [email protected]. To post to this group, send email to [email protected]. To view this discussion on the web visit https://groups.google.com/d/msgid/rubyonrails-talk/532AB0F6.30803%40gmail.com. For more options, visit https://groups.google.com/d/optout.

