在 Windows 上安装 Ruby on Rails
我正在 Windows 7 上安装 Ruby on Rails。我安装了 ruby-1.9.2(在 c:\ruby 中),并使用 gem install Rails
命令安装了 Rails(这样做来自 c:\ruby\bin 因为这是我可以调用该命令的唯一地方)。然后我运行 rails new my_app
命令。
我遇到的问题是尝试从 apps 文件夹 (c:\ruby\bin\my_app) 内运行 rails server
命令,我收到消息:'rails' 无法识别。 ..
。
我做错了什么?
I am in the process of installing Ruby on Rails on windows 7. I installed ruby-1.9.2 (in c:\ruby) and I've installed rails using the gem install rails
command (doing this from c:\ruby\bin since this is the only place i can call the command). I've then run rails new my_app
command.
The problem that I have is trying to run the rails server
command from inside the apps folder (c:\ruby\bin\my_app) I get the message: 'rails' is not recognized...
.
What have I done wrong?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
在 Windows 上,您需要设置系统 PATH 变量(我的电脑 -> 属性 -> 高级 -> 环境变量 -> 系统变量)
附加 PATH 变量值:: c:\ruby\bin;
On Windows you need to set your system PATH variable (My Computer -> Properties -> Advanced -> Environment Variables -> System variables)
Append the PATH Variable value:: c:\ruby\bin;
我是 Windows 7 用户,按照本指南我能够让 Rails 正常工作:
http://www.wiki.devchix.com/index.php?title =Windows__Rails_3
我知道链接是不受欢迎的,但 Windows 7 安装非常详细,而且 devchix 指南非常好。我将应用程序存储在桌面上名为“rails”的文件夹中,而不是放在 ruby bin 中。
I'm a windows 7 user, and I was able to get rails working by following this guide:
http://www.wiki.devchix.com/index.php?title=Windows_-_Rails_3
I know linking is frowned upon, but the windows 7 installations is quite detailed, and the devchix guide is excellent. I store my apps on the desktop in a folder called 'rails' not in the ruby bin.
尝试Rails For The Windows 安装程序。它允许您以非常简单的方式在 Windows 上安装 Ruby 和 Rails。
Try Rails For The Windows installer. It allows you install Ruby and Rails on Windows in a very simple way.