如何在 Ubuntu 12.04 上安装 nodejs 4.4.3 LTS 版本?

如何在 Ubuntu 12.04 上安装 nodejs 4.4.3 LTS 版本?

我尝试使用以下命令从源代码构建它:

cd /usr/local/src
wget http://nodejs.org/dist/v4.4.3/node-v4.4.3.tar.gz
tar -xvzf node-v4.4.3.tar.gz
cd node-v4.4.3
./configure 
make
sudo make install

./configure出现如下所述的错误:

creating  ./icu_config.gypi
{ 'target_defaults': { 'cflags': [],
                       'default_configuration': 'Release',
                       'defines': [],
                       'include_dirs': [],
                       'libraries': []},
  'variables': { 'asan': 0,
                 'gas_version': '2.22', 
....
....
       'v8_random_seed': 0,
                 'v8_use_snapshot': 'true',
                 'want_separate_host_toolset': 0}}
creating  ./config.gypi
creating  ./config.mk
gyp: /usr/local/src/node-v4.4.3/deps/cares/cares.gyp not found (cwd: /usr/local/src/node-v4.4.3) while loading dependencies of /usr/local/src/node-v4.4.3/node.gyp while trying to load /usr/local/src/node-v4.4.3/node.gyp
Error running GYP

正如我在 git 上看到的一个问题这里,我已经将 gcc 更新到 4.8 并且对 4.9 也感到厌倦..错误仍然相同:|

有谁遇到过同样的问题并知道解决办法吗?有人能帮忙解决吗?

相关内容