尝试启动新的 Rails 项目时找不到 Rails
我刚刚安装了 Eclipse,然后是 Ruby 1.9.2,然后是 RailsInstaller。然后我安装了 Eclipse 的 Aptana 插件。
我的目录设置如下:
C:\Ruby192
C:\RailsInstaller\Ruby1.8.7
当我在 Eclipse 中创建一个新的 Rails 项目时,它会抛出此错误:
LOL@LOL-PC /d/Projects/rail
$ rails .
sh.exe": rails: command not found
我发现这个 解决方案,但似乎适用于linux。我使用的是 Windows 7。
我重新安装了 Rails 和 ruby,但还是一样。几个月前我也安装了 GitBash 和 GitExtensions 并遇到了这个问题。我通过指向 Git 所在的目录并将默认环境设置为 HOME 来解决这个问题。
我现在不知道在这个错误中如何使用 ruby on Rails 。
I just installed Eclipse, then Ruby 1.9.2 then RailsInstaller. I then installed Aptana plugin for eclipse.
My directory setup are as follows:
C:\Ruby192
C:\RailsInstaller\Ruby1.8.7
When I create a new rails project in Eclipse, It throws this error:
LOL@LOL-PC /d/Projects/rail
$ rails .
sh.exe": rails: command not found
I found this solution, but it seems its for linux. I'm using Windows 7.
I reinstalled rails and ruby but its the same thing. I also had installed GitBash and GitExtensions a few months ago and had this problem. I solved it by pointing to the directory where Git was and setting the Default environment to HOME
.
I now have no idea what to do to use ruby on rails in this error.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
将安装 Rails 的位置添加到 PATH 环境变量中。 (大概是 C:\Ruby192\lib\ruby\gems\1.9.1\gems\rails*\bin )
我还注意到您正在使用 ruby 1.8.7 的 RailsInstaller 但似乎已经安装了 ruby 1.9.2。这可能会在将来带来麻烦。
尝试按照此指南在 Windows 上安装 Rails。它使用 gem install 而不是过时的 RailsInstaller。
Add the place where you installed rails to your PATH environment variable. (Presumably C:\Ruby192\lib\ruby\gems\1.9.1\gems\rails*\bin)
I also noticed you are using the RailsInstaller for ruby 1.8.7 but seem to have installed ruby 1.9.2. This may cause trouble in the future.
Try following this guide for installing rails on windows. It uses gem install instead of the out dated RailsInstaller.