Red hat Linux 安装Node.js 源码安装

时间:2021-04-08 04:29:52

1、 下载源码包 http://nodejs.org/dist/v0.10.29/node-v0.10.29.tar.gz

2、准备安装环境,>python2.6, gcc, g++

  python redhat自带了不用装,

  gcc:  yum install -y gcc gcc-c++

3、

  tar -zxf node-v0.10.29.tar.gz

  cd node-v0.10.29

  ./configure && make && sudo make install