【发布时间】:2011-10-27 09:16:45
【问题描述】:
我正在使用这个网站来遵循如何安装节点的命令:
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 编译器?
【问题讨论】:
标签: ubuntu node.js installation terminal