红联Linux门户
Linux帮助

在Ubuntu上安装NPM(Node Package Manger)

发布时间:2016-03-29 10:33:04来源:linux网站作者:若闻

当然,首先要安装Node.js,通过PPA安装Node.js

安装:

sudo apt-get install python-software-properties
sudo add-apt-repository ppa:chris-lea/node.js
sudo apt-get update
sudo apt-get install nodejs

目前只能过PPA安装稳定版本Node.js。

安装后查看版本:

~$ node --version
v0.4.12

 

接下来:

curl http://npmjs.org/install.sh | sudo sh

注意:因为权限的原因,需要加sudo。但是是给sh加sudo而不是curl。


另外,如果没有安装curl,使用下面命令安装:

sudo apt-get install curl

安装完成后,使用下面命令查看NPM版本:

$ npm --version
1.0.30


本文永久更新地址:http://www.linuxdiyf.com/linux/19342.html