node.js安装

1、安装依赖:

centos:

 yum install libtool automake autoconf gcc-c++ openssl-devel

ubuntu:

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

2、安装node (centos和ubuntu一样)

git clone git://github.com/joyent/node.git   
  cd node
  ./configure
  make   
  sudo make install

 3、测试完后测试是否安装正确

node -v

你可能感兴趣的:(node.js安装)