安装Node.js

  • ubuntu,nodejs,g++,phonegap,
  • 2014-08-01 12:52:59

要进行PhoneGap开发,需要先安装Node.Js ,在ubuntu下,下载得到一个.tar.gz的压缩包,解压,看README.md文件。

安装要求:

GCC 4.2 or newer
Python 2.6 or 2.7
GNU Make 3.81 or newer
Libexecinfo (FreeBSD and OpenBSD only)

安装:
./configure
make
make install

在make 的时候报一个错
make[1]:g++: Command not found 
make[1]:*** [/home/binkery/Downloads/node-v0.10.19/out/Release/obj.target/v8_base/deps/v8/src/accessors.o] Error 127
make[1]: Leaving directory '/home/binkery/Downloads/node-v0.10.19/out'

OK,g++没有安装。安装之
sudo apt-get install g++

安装完再次make , make install

相关文章

- EOF -

本站文章除注明转载外,均为本站原创或编译。欢迎任何形式的转载,但请务必注明出处,尊重他人劳动。
转载请注明:文章转载自 Binkery 技术博客 [https://binkery.com]
本文标题: 安装Node.js
本文地址: https://binkery.com/archives/306.html