Centos6安装Node.js

1、在官网 https://nodejs.org/en/download/ 查看版本,LTS代表长期支持的版本(稳定版)

Centos6安装Node.js

2、安装构建工具
sudo yum install gcc-c++ make

3、Node.js 8下载安装脚本:

curl --silent --location https://rpm.nodesource.com/setup_8.x | sudo bash -

另外对于Node.js 9:

curl --silent --location https://rpm.nodesource.com/setup_9.x | sudo bash -

然后安装:

sudo yum -y install nodejs

4、测试安装:

[root@localhost ~]# node -v
v8.9.4

[root@localhost ~]# npm -v

5.6.0

本文转自奔跑在路上博客51CTO博客,原文链接http://blog.51cto.com/qiangsh/2066461如需转载请自行联系原作者


qianghong000

上一篇:linux安全及应用


下一篇:执行git push出现"Everything up-to-date"