Best way to Install Redmine 1.2.1, RUBY 1.8.7, Rails 2.3.11, Rack 1.1.1, GitHub, Using RVM
Can anyone suggest me the best way in which ,I follow to install it properly, because previously I felt in various dependencies issues.
Suggest something ?
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
Try going about it like this:
Install RVM – see https://rvm.beginrescueend.com/rvm/install/ for details on that.
Install Ruby 1.8.7:
rvm install 1.8.7Actually use Ruby 1.8.7:
rvm use 1.8.7(Add the flag –default to use 1.8.7 by default in every new terminal you open up)Install Rails, Rack
gem install rails -v 2.3.11gem install rack -v 1.1.1Follow the rest of the installation procedure – http://www.redmine.org/projects/redmine/wiki/RedmineInstall – including getting your database set up, modifying config files, etc etc.
After that, you shouldn’t have any dependency issues, unless you’ve already got ruby 1.8.7 installed and a bunch of gems installed with it. If that’s the case (and you do run into dependency problems), the next step would be to set up a separate gemset in RVM.