Ubuntu 上安装 Node.js

前端之家收集整理的这篇文章主要介绍了Ubuntu 上安装 Node.js前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。

Node.js 源码安装

以下部分我们将介绍在Ubuntu Linux下安装 Node.js 。 其他的Linux系统,如Centos等类似如下安装步骤。
在 Github 上获取 Node.js 源码:

$ sudo git clone https://github.com/nodejs/node.git
Cloning into 'node'...

修改目录权限:

$ sudo chmod -R 755 node

使用 ./configure 创建编译文件,并按照:

$ cd node
$ sudo ./configure
$ sudo make
$ sudo make install

查看 node 版本:

$ node --version
v0.10.25

Ubuntu apt-get命令安装

sudo apt-get install nodejs
sudo apt-get install npm
原文链接:https://www.f2er.com/ubuntu/351830.html

猜你在找的Ubuntu相关文章