安装导轨2.3.4
我正在开发一个需要安装 Rails 2.3.4 的项目。我只使用过 Rails 3 应用程序,其中我使用 RVM 安装了 Rails 3。
由于我在这个项目中使用单独的机器,所以基本上我所要求的只是如何安装 Rails 2.3.4。任何链接将不胜感激:)
I am working on a project that requires me to install Rails 2.3.4. I have only worked with Rails 3 applications, where I installed Rails 3 using RVM.
Since I am using a separate machine for this project, basically all I am asking for is how to install Rails 2.3.4. Any links would be much appreciated :)
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(4)
你试过吗
did you try
RVM http://beginrescueend.com/rvm/install/ 是您最好的选择。
您使用哪个操作系统?
安装指南适用于 Linux。我对 Windows 上的 RVM 没有太多经验。但应该简单明了。
使用 RVM,您可以创建 gemset,这将为您带来优势,您可以为不同的应用程序运行不同的 Rails 版本。
http://beginrescueend.com/gemsets/
RVM http://beginrescueend.com/rvm/install/ is your best bet.
Which OS are you working with ?
The installation guide is for Linux. I don't have much experience with RVM on windows. But should be straightforward.
With RVM you get create gemsets which will give you advantage that you can run different rails version for different applications.
http://beginrescueend.com/gemsets/
gem 安装rails -v 2.3.4
gem install --help
了解更多信息。没有理由不能通过
rvm
执行上述内容。gem install rails -v 2.3.4
gem install --help
for more information.There is no reason why the above can not be executed via
rvm
.或者
它将安装rails 2.3.4版本。
or
It will install rails 2.3.4 version.