Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I'm trying to install Ruby on Rails on Windows 7 but I have a problem immediately at the beginning of the configuration. This is the first time I'm trying RoR.

I downloaded RailsInsaller from http://railsinstaller.org/ and installed it successfully. Immediately after the installation when I need to configure environment, I receive an error in cmd:

# Rails Environment Configuration.
open C:\\Users\\\246ero/.ssh/id_rsa failed: No such file or directory.
The system cannot find the path specified.
D:/ROR/RailsInstaller/scripts/config_check.rb:87:in `initialize': No such file o
r directory - C:\Users\|ero/.ssh/id_rsa.pub (Errno::ENOENT)
    from D:/ROR/RailsInstaller/scripts/config_check.rb:87:in `open'
    from D:/ROR/RailsInstaller/scripts/config_check.rb:87:in `<main>'

What is the solution to this problem? Or is there any other way to install RoR on Windows 7? Thank you for your help.

share|improve this question

1 Answer

I have installed Ruby on Rails in Windows 7. To install ruby on rails on Windows7 follow the steps:

1) install ruby on windows 7. Download from: http://rubyinstaller.org/

2) check ruby is installed correctly by this command ruby -v if this gives command not found error, then set RUBY_HOME="path/to/ruby/bin" in environment variables.

3) install rails by command gem install rails.

and you are done. Enjoy Ruby On Rails on Windows7.

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.