Mac+CentOS虚拟机安装nodejs
2016-03-29 21:00 sunshine1987 阅读(196) 评论(0) 编辑 收藏 举报下载NodeJS源码包并解压nodejs
[root@BobServerStation local]# wget http://nodejs.org/dist/v0.12.12/node-v0.12.12.tar.gz //网速不好可以自己去浏览器下载
//下载列表 http://nodejs.org/dist/
[root@BobServerStation local]# tar zxvf node-v0.12.12.tar.gz
[root@BobServerStation local]# cd node-v0.12.12
配置、编译、安装
[root@BobServerStation node-v0.12.12]# ./configure --prefix=/usr/local/node
[root@BobServerStation node-v0.12.12]# make && make install
将持续3-4min....
接下来配置Node环境
[root@BobServerStation node-v0.10.24]# vim /etc/profile //profile是环境配置文件
[root@BobServerStation node-v0.10.24]# source /etc/profile --重启生效
测试是否安装成功
修改npm源:一劳永逸的方法
编辑 ~/.npmrc 加入下面内容
registry = http://registry.cnpmjs.org
参考http://zhaohe162.blog.163.com/blog/static/38216797201402234212981/
e-v0.10.24