0

因此,我正在遵循 node.js 安装过程(来自存储库),其中包含以下基本步骤。

  1. git 克隆https://github.com/joyent/node.git

  2. 光盘节点

  3. git checkout v0.6.16 #尝试检查 nodejs.org 的稳定版本是什么

  4. 。/配置

  5. 制作

  6. 须藤使安装

尝试在命令行中运行 Makefile(键入 make。)后,我收到以下错误,我不知道如何修复。

项目未配置(首先运行“waf configure”)错误。制作:[程序] 错误 1 ​​

我正在尝试在 ubuntu 12.04 上执行此操作。谷歌搜索这个问题并没有看到任何解决方案。不寻求简洁的回应。我想要有关如何解决问题的具体说明。感谢您的帮助,如果您给出良好的回应,我会给您打分!

4

1 回答 1

3

You are missing the OpenSSL headers for compiling node.js:

  • To compile without SSL support: Follow all steps from above, but configure with ./configure --without-ssl
  • Install SSL development packages before configure: sudo apt-get install libssl-dev
于 2012-05-21T18:45:16.150 回答