在 Github 上获取 Node.js 源码
sudo git clone https://github.com/nodejs/node.git
修改目录权限
sudo chmod -R 755 node
进入node目录
cd node
使用 ./configure 创建编译文件
sudo ./configure
如果报了以下错误
No acceptable C compiler found!
表示没有c编译环境,需要安装c编译环境
sudo apt-get install gcc
sudo apt-get install build-essential
编译(这里花的时间贼长,很长的长)
sudo make
安装(这个也需要很长时间)
sudo make install
node有一个模块n,用于管理node版本
sudo npm install -g n
升级到最新稳定版
sudo n stable
升级npm
sudo npm install npm -g
网友评论