首页 > 代码库 > 在CentOS中安装NodeJS
在CentOS中安装NodeJS
1. 更改软件源
备份默认的软件源文件“CentOS-Base.repo”
mv /etc/yum.repos.d/CentOS-Base.repo /etc/yum.repos.d/CentOS-Base.repo.backup
下载对应版本的repo文件,并放入 /etc/yum.repos.d/ 目录下
wget http://mirrors.163.com/.help/CentOS6-Base-163.repomv CentOS6-Base-163.repo /etc/yum.repos.d/yum makecache
2.安装NodeJS依赖的库或工具
yum install libtool automake autoconf gcc-c++ openssl-devel
3. 安装NodeJS
然后下载nodejs的源码包tar(http://nodejs.org/dist/v0.10.34/node-v0.10.34.tar.gz),解压缩后直接三板斧编译安装
./configure --prefix=/usr make make install
最后用 node -v和 npm -v 查看安装的版本 到这里其实还没完, 还需要安装 node-gyp 之类的包
npm install -g node-gyp
npm的另一种安装方式是
wget http://npmjs.org/install.sh chmod +x ./install.sh ./install.sh
在CentOS 6.5上安装NodeJS
在CentOS中安装NodeJS
声明:以上内容来自用户投稿及互联网公开渠道收集整理发布,本网站不拥有所有权,未作人工编辑处理,也不承担相关法律责任,若内容有误或涉及侵权可进行投诉: 投诉/举报 工作人员会在5个工作日内联系你,一经查实,本站将立刻删除涉嫌侵权内容。