Node.js 安装
安装方式有:源码安装,apt-get源安装,官网下载程序
apt-get方式安装
1. # apt-get update // 更新软件
2. # apt-get install -y python-software-properties software-properties-common // 安装所需的依赖包
3. # add-apt-repository ppa:chris-lea/node.js //PPA 获取最新安装包
4. # apt-get update // 更新
5. # apt-get install nodejs // 安装node.js
apt-get 安装的版本很低,不建议这么安装。
官网下载程序包
# 下载
wget -c https://nodejs.org/dist/v4.5.0/node-v4.5.0-linux-x64.tar.xz
# 解压
tar zxvf node-v4.5.0-linux-x64.tar.xz
编译安装
Linux(Ubuntu)下安装Node.js
安装Node.js之前,如果没有安装g++及 libssl-dev,则先要安装好,安装方法如下:
$ sudo apt-get install g++
$ sudo apt-get install libssl-dev
接下来,就可以下载安装Node.js了,目前稳定版本为Node.js v4.5.0,下面是安装步骤:
# 下载源码包
$ wget -c http://nodejs.org/dist/v4.5.0/node-v4.5.0.tar.gz
# 解压
$ tar zxvf node-v4.5.0.tar.gz
# 配置
$ ./configure
# 编译 并且 安装
$ make && make install
安装好后,查看下版本
$ node -v
网友评论