How do i install Ruby on Rails in my PC ....can someone please let me know the开发者_如何转开发 files to be downloaded and installation procedures.
Go to this page and follow the instructions
http://rubyonrails.org/download
Downloads and instructions for Windows and OS X are available here.
Try these:
Installing ruby - http://digit.lk/ruby_february2009
Installing rails - http://digit.lk/09_april_ruby
- Download RubyInstaller 1.8.7 from here. During the installation, check the 'Add Ruby executables to your PATH' box. After the installation, don't forget to restart
cmd
. Tryruby -v
andgem -v
to check for installed Ruby and RubyGems and ensure they work; - Install the latest stable Rails release:
gem install rails
and check it usingrails -v
; - Create a new application using
rails myapp
; cd myapp
, runscript/server
, and develop, develop, develop.
Best way to Install using rvm (ruby version manager)
http://buffercode.in/install-rvm-ruby-and-rails
Or
http://www.rvm.io
精彩评论