当我从SpookyJS运行hello示例时,它失败并出现以下错误:
$ node examples/hello.js
events.js:72
throw er; // Unhandled 'error' event
^
Error: spawn ENOENT
at errnoException (child_process.js:998:11)
at Process.ChildProcess._handle.onexit (child_process.js:789:34)
事实上,我尝试的所有示例都会导致此错误。我陷入了困境,因为即使在查看源代码时我也无法解释错误消息。你有什么想法吗?
(我使用Ubuntu和phantomjs 1.9.7)
答案 0 :(得分:5)
解决方案:npm install -g casperjs
我认为在本地调用npm install
就足够了,但casperjs
必须在路径中。在全局安装casperjs
后,该示例运行正常。