Ubuntu + Install Redmine 1.2.1, Ruby 1.8.7, Rails 2.3.11 Using RVM
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 someth开发者_Go百科ing ?
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.7
Actually 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.11
gem install rack -v 1.1.1
Follow 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.
精彩评论