让 raml2html 在 14.04 上运行

让 raml2html 在 14.04 上运行

我希望能够执行raml2html以生成使用 RAML 指定的某些 API 的文档。我已raml2html使用nodejs包管理器通过以下方式安装

$> sudo npm i -g raml2html 

但执行失败:

$> raml2html interface.raml 
[Error: AssertionError: urllib-sync need node version 0.11.13+]

我试过

$> sudo apt-get update

更新库。返回的唯一包apt-cache search urllib是 Python 库,因此我认为它们不相关。

为了开始raml2html工作我需要安装/升级什么?

node是最新版本v0.10.25

答案1

我通过运行以下命令使其在 Ubuntu 14.04 LTS 上运行:

curl -sL https://deb.nodesource.com/setup_4.x | sudo bash -
sudo npm i -g raml2html 

https://github.com/nodejs/LTS/有关不同 NodeJS 版本的更多信息。

相关内容