微信公众号搜"智元新知"关注
微信扫一扫可直接关注哦!

无法安装hubot – npm依赖关系未满足

在尝试部署hubot时,npm不断抱怨未满足的依赖关系。文档没有解释如何解决这个问题。
yum install npm --enablerepo=epel
yum install nodejs --enablerepo=epel
cd /opt
git clone https://github.com/github/hubot.git
cd hubot/
./bin/hubot --create acebot
npm install -g hubot coffee-script
...

npm http 200 https://registry.npmjs.org/formidable/-/formidable-1.0.14.tgz
npm http 200 https://registry.npmjs.org/uid2/-/uid2-0.0.2.tgz
/usr/bin/hubot -> /usr/lib/node_modules/hubot/bin/hubot
npm WARN unmet dependency /usr/lib/node_modules/block-stream requires inherits@'~2.0.0' but will load
npm WARN unmet dependency undefined,npm WARN unmet dependency which is version undefined
npm WARN unmet dependency /usr/lib/node_modules/fstream requires inherits@'~2.0.0' but will load
npm WARN unmet dependency undefined,npm WARN unmet dependency which is version undefined
npm WARN unmet dependency /usr/lib/node_modules/fstream-ignore requires inherits@'2' but will load
npm WARN unmet dependency undefined,npm WARN unmet dependency which is version undefined
npm WARN unmet dependency /usr/lib/node_modules/fstream-npm requires inherits@'2' but will load
npm WARN unmet dependency undefined,npm WARN unmet dependency which is version undefined
npm WARN unmet dependency /usr/lib/node_modules/glob requires inherits@'2' but will load
npm WARN unmet dependency undefined,npm WARN unmet dependency which is version undefined
npm WARN unmet dependency /usr/lib/node_modules/npmconf requires inherits@'~2.0.0' but will load
npm WARN unmet dependency undefined,npm WARN unmet dependency which is version undefined
npm WARN unmet dependency /usr/lib/node_modules/tar requires inherits@'2' but will load
npm WARN unmet dependency undefined,npm WARN unmet dependency which is version undefined
coffee-script@1.6.3 /usr/lib/node_modules/coffee-script

packages.json文件包含依赖关系的列表,我认为它应该被自动解决

"dependencies": {
    "coffee-script":      "1.6.3","optparse":           "1.0.4","scoped-http-client": "0.9.8","log":                "1.4.0","express":            "3.3.4"
  },

任何人都可以说明为什么npm不能安装hubot?

更新

我仍然不明白为什么它不工作,但运行npm安装之前运行npm install -g hubot咖啡脚本似乎已经过了这个错误。在发布答案之前,我需要进行验证

我不知道为什么它不起作用,但是我在Centos 6.3机器上安装保镖时遇到了类似的问题。 Yum已经从EPEL中继承了2个,但版本检测不起作用。 “sudo npm install -g inherited”安装了继承的版本,工作版本报告和bower / grunt-cli之后安装好。

版权声明:本文内容由互联网用户自发贡献,该文观点与技术仅代表作者本人。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌侵权/违法违规的内容, 请发送邮件至 dio@foxmail.com 举报,一经查实,本站将立刻删除。

相关推荐