ubuntu安装node.js记录
时间:2016-02-28 13:58 来源:linux.it.net.cn 作者:IT
安装编译环境,>sudo apt-get install g++ c++ curl libssl-dev apache2-utils git-core curl
下载安装包,可以wget 。。。
编译 ./configure
make
安装 make install
npm 安装
准备目录权限 sudo chown -R $USER /usr/local
安装 curl http://npmjs.org/install.sh | sh
安装第三方模块 npm install models——name
下面为需要指定registry的命令
npm install express –verbose –registry http://registry.npmjs.org
(责任编辑:IT)
安装编译环境,>sudo apt-get install g++ c++ curl libssl-dev apache2-utils git-core curl 下载安装包,可以wget 。。。 编译 ./configure make 安装 make install npm 安装 准备目录权限 sudo chown -R $USER /usr/local 安装 curl http://npmjs.org/install.sh | sh 安装第三方模块 npm install models——name 下面为需要指定registry的命令 npm install express –verbose –registry http://registry.npmjs.org (责任编辑:IT) |