在ubuntu中安裝Node.js

下載源碼:http://nodejs.org/download/
解壓文件後,在其根目錄執行

  1. ./configure
  2. make
  3. sudo make install 
第1步,很快執行完成,當然按Readme中說明的環境要準備好:
    * GCC 4.2 or newer
    * Python 2.6 or 2.7
    * GNU Make 3.81 or newer
    * libexecinfo (FreeBSD and OpenBSD only)
第2步,花了好长时间,有5分钟,感觉是有那么多程序要编译吗,看来并不简单;
第3部很快
installing /usr/local/lib/node_modules/npm/html/api/start.html
symlinking ../lib/node_modules/npm/bin/npm-cli.js -> /usr/local/bin/npm
updating shebang of /usr/local/bin/npm to /usr/local/bin/node

检验是否安装成功:
node -v
出现正确版本号,恭喜!你做到了,虽然很简单。

你可能感兴趣的:(安装,liunx,ubuntu,node,instal)