Windows XP 上的 Rails 开发和 Cygwin

发布于 2024-07-29 17:32:01 字数 515 浏览 2 评论 0原文

你好,我在 Windows XP 上安装了 cygwin,这样我就可以在 Console2 中使用 Unix 命令。 我还安装了 Ruby on Rails,没有出现太大问题。 然后我尝试运行 'ruby /script/server' 命令,并收到以下错误:

$ ruby /script/server
c:\ruby\bin\ruby.exe: No such file or directory -- /script/server (LoadError)

为了访问 Cygwin 上的任何文件或驱动器,我知道我必须在路径前面加上 \cygdrive。 所以这一定是造成问题的原因。 但是我不知道如何让 Rails 知道 \cygdrive\ 必须放在前面。

另外,如果有更好的方法在Windows环境下进行Rails开发,请告诉我。 我一直在 OSX 上使用 Rails,这是第一次在 Windows 上使用。 所以我已经习惯了 unix 命令,并且我也想继续在 Windows 上使用它们。

Hello I installed cygwin on Windows XP so I can use Unix command in Console2.
I also installed Ruby on Rails without much of problem.
Then I tried to run the 'ruby /script/server' command, and I got the following error:

$ ruby /script/server
c:\ruby\bin\ruby.exe: No such file or directory -- /script/server (LoadError)

In order to access any files or drives on Cygwin, I know I have to prepend the path with \cygdrive. So that must be causing the problem. However I don't know how to make Rails aware that \cygdrive\ has to be prepended in front.

Also, if there is a better way to do Rails development on Windows environment, please let me know. I've been riding Rails on OSX, and it's the first time on Windows. So I'm used to the unix commands and I'd like to keep using them on Windows as well.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

梨涡 2024-08-05 17:32:01

命令应该是:

ruby script/server

前导的“/”将在根目录而不是当前目录中查找文件。

The command should be:

ruby script/server

The leading '/' will look for the file in the root directory instead of your current directory.

太阳公公是暖光 2024-08-05 17:32:01

这并没有回答您关于 Cygwin 的问题,而是更多关于在 Windows 上执行 Rails 的其他方法的最后一部分。 我知道您想要使用命令行选项,尽管 Windows 上有一些非常好的 IDE 支持。 我最近刚刚切换到带有内置 Ruby 包的 Netbeans 6.7。 我不得不说到目前为止效果非常好。 我一直在使用 Aptana,但我不推荐它(有问题)。 但我理解,如果您不热衷于使用 IDE(特别是如果您在 Mac 上习惯使用 IDE),那么它对我有用,但我来自 Java,所以我实际上喜欢拥有我的安全毯(呃..我的意思是IDE)。

This doesn't answer your question about Cygwin but more your last part about other ways to do Rails on Windows. I understand you wanting to use the command line options, although there is some pretty good IDE support available on Windows. I just recently switched to Netbeans 6.7 with the built in Ruby bundle. I have to say it works very well so far. I had been using Aptana but I wouldn't recommend it (way to buggy). But I understand if you aren't keen on using an IDE (especially if that is what you are used to on Mac) - it worked for me but I came from Java so I actually like having my security blanket (er..I mean IDE).

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文