-1

我正在尝试编译 emberjs 但每次我运行rake它都会告诉我

Building Ember...
Done
The system cannot find the path specified.
PhantomJS is not installed. Download from http://phantomjs.org

我下载了 PhantomJS 并将其提取到C:\Program Files\phantomjs-1.7.0-windows,然后将此路径添加到我的环境和系统 PATH 中。

当我打开命令提示符并运行 phantomjs --version 时,我得到 1.7.0 但如果我运行 rake 编译 ember,它会一直抱怨 phantomjs 未安装。

phantomjs 还需要做什么才能被“检测到”?

4

1 回答 1

3

它抱怨是因为 Windows 中没有“which”命令。注释掉 Rakefile中的第 69-71 行,这应该可以解决问题。

于 2012-11-24T11:31:35.663 回答