ubuntu 14.04 安装Node

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

   sudo apt-get install software-properties-common

ubuntu 14.04 安装Node_第1张图片

n的常用命令
$ n
   0.10.1
   0.10.15
o   0.10.21
   0.11.8

如果你要安装其他的版本(比如0.11.12),那么如下:

$ n 0.11.12
install : 0.11.12
  mkdir : /usr/local/n/versions/0.11.12
  fetch : http://nodejs.org/dist/v0.11.12/node-v0.11.12-darwin-x64.tar.gz
####                              5.9%

安装最新的版本

$ n latest

安装稳定版本

$ n stable

删除某个版本

$ n rm 0.10.1 

以指定的版本来执行脚本

$ n use 0.10.21 some.js

你可能感兴趣的:(ubuntu 14.04 安装Node)