top button
Flag Notify
    Connect to us
      Site Registration

Site Registration

How to install Node.js in Fedora?

+1 vote
309 views

Any pointer on how to install Node.js in Fedora?

posted Aug 14, 2013 by Sumit Pokharna

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

1 Answer

+1 vote
 
Best answer

You should have googled it -

yum install gcc-c++ make openssl-devel

Install from Source code :

wget http://nodejs.org/dist/v0.8.15/node-v0.8.15.tar.gz
tar zxvf node-v0.8.15.tar.gz
cd node-v0.8.15
./configure
make
make install

Install from GIT repository

yum install git
git clone git://github.com/joyent/node.git
cd node
./configure
make
make install
answer Aug 14, 2013 by Salil Agrawal
Similar Questions
...