Installing Nodejs in CentOS

Source: Internet
Author: User
Tags install node
1. Change the software source

Back up the default software source file "Centos-base.repo"

mv /etc/yum.repos.d/CentOS-Base.repo /etc/yum.repos.d/CentOS-Base.repo.backup

Download the corresponding version of the repo file and put it in the/etc/yum.repos.d/directory

wget http://mirrors.163.com/.help/CentOS6-Base-163.repomv CentOS6-Base-163.repo /etc/yum.repos.d/yum makecache
2. Installing Nodejs-dependent libraries or tools
yum install libtool automake autoconf gcc-c++ openssl-devel  
3. Installing Nodejs

Then download the Nodejs source package tar (http://nodejs.org/dist/v0.10.34/node-v0.10.34.tar.gz), unzip it directly kick compile the installation

./configure --prefix=/usr  make  make install

Finally, with Node-v and npm-v to view the installed version here is actually not finished, but also need to install NODE-GYP and other packages

npm install -g node-gyp  

Another way to install NPM is

wget http://npmjs.org/install.sh  chmod +x ./install.sh  ./install.sh  

Installing Nodejs on CentOS 6.5

Installing Nodejs in CentOS

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.