top button
Flag Notify
    Connect to us
      Site Registration

Site Registration

How to install Node.js on ubuntu?

+1 vote
437 views
How to install Node.js on ubuntu?
posted Mar 19, 2014 by Garima Jain

Share this question
Facebook Share Button Twitter Share Button LinkedIn Share Button

1 Answer

+1 vote

Source : http://howtonode.org/how-to-install-nodejs

Before Proceeding Install All These Dependencies:

sudo apt-get install g++ curl libssl-dev apache2-utils
sudo apt-get install git-core

Then Enter The Following Commands :

git clone git://github.com/ry/node.git
cd node
./configure
make
sudo make install
answer Mar 20, 2014 by Atif
...