我希望能够执行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 版本的更多信息。