Node.js 生成时发出咕噜声警告(咕噜声指南针)

Node.js 生成时发出咕噜声警告(咕噜声指南针),node.js,npm,gruntjs,grunt-contrib-compass,Node.js,Npm,Gruntjs,Grunt Contrib Compass,我使用yoeman生成器构建了一个项目,现在我在构建过程中遇到了一个错误。我得到这个错误: Running "concurrent:dist" (concurrent) task Running "coffee:dist" (coffee) task Running "coffee:test" (coffee) task Done, without errors. Elapsed time coffee:test 20ms Total

我使用yoeman生成器构建了一个项目,现在我在构建过程中遇到了一个错误。我得到这个错误:

Running "concurrent:dist" (concurrent) task

    Running "coffee:dist" (coffee) task

    Running "coffee:test" (coffee) task

    Done, without errors.

    Elapsed time
    coffee:test  20ms
    Total        23ms

    Running "copy:styles" (copy) task
    Copied 2 files

    Done, without errors.

    Elapsed time
    copy:styles  29ms
    Total        29ms

        Warning: 
        /My/Project/Directory/node_modules/grunt-contrib-compass/node_modules/tmp/lib/tmp.js:261
          throw err;
                ^
        Error: spawn EACCES
            at errnoException (child_process.js:980:11)
            at Process.ChildProcess._handle.onexit (child_process.js:771:34) Used --force, continuing.
这似乎发生在“咖啡:测试”任务和grunt contrib compass插件之后。我在stack exchange上找不到任何帮助我的东西

我正在跑步:

grunt cli v0.1.8

grunt v0.4.1

npm 1.3.8

节点v0.10.18


我试着更新发电机,但没有用。我希望有人能帮助我?

我也有同样的错误,看起来指南针要么没有安装,要么无法访问。当我做出以下决定时,情况变得更好了:

> gem install compass

希望这有帮助

我和杰夫犯了同样的错误,但这并没有解决问题。