帮助从终端在Ubuntu 10.04上安装Node.js?

时间:2011-08-15 15:46:52

标签: ubuntu node.js installation terminal

我正在使用此站点来遵循有关如何安装节点的命令:

https://github.com/joyent/node/wiki/Installation

这部分没有错误:

git clone --depth 1 git://github.com/joyent/node.git # or git clone git://github.com/joyent/node.git if you want to checkout a stable tag
cd node
git checkout v0.4.10 # optional.  Note that master is unstable.
export JOBS=2 # optional, sets number of parallel commands.
mkdir ~/local

一旦我点击此命令,我就收到了错误

root@tgwizman:/node# ./configure --prefix=$HOME/local/node
Checking for program g++ or c++          : not found 
Checking for program icpc                : not found 
Checking for program c++                 : not found 
/node/wscript:228: error: could not configure a cxx compiler!

我该怎么做才能获得cxx编译器?

4 个答案:

答案 0 :(得分:13)

您应该只能在终端中运行以下内容:

sudo apt-get update
sudo apt-get install build-essential

(另外,请阅读https://help.ubuntu.com/community/CompilingSoftware了解更多背景信息等)。

答案 1 :(得分:8)

您缺少编译器。

输入:

sudo apt-get install g++

本指南包含所有内容。

http://www.codediesel.com/linux/installing-node-js-on-ubuntu-10-04/

答案 2 :(得分:1)

ubuntu我更喜欢通过nvm安装nodejs,这最适合我,此外它还允许您切换多个版本的nodejs需要的。

示例安装:

curl -o- https://raw.githubusercontent.com/creationix/nvm/v0.32.0/install.sh | bash
command -v nvm
nvm install node
nvm use node
nvm run node --version

答案 3 :(得分:0)

以下是有关如何在Ubuntu 10.04上设置nodejs的完整指南,

http://blog.markmirandilla.com/2012/12/14/how-to-setup-node-js-in-ubuntu-10-04/