Advertisement
iarmin

install rails on debian

May 29th, 2011
308
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Bash 0.39 KB | None | 0 0
  1. #
  2. # install ruby on rails on debian host (with ruby1.8)
  3. #
  4. aptitude install ruby1.8 ri1.8 rdoc1.8 ruby1.8-dev irb1.8 ruby-dev
  5. aptitude install g++ gcc make build-essential
  6.  
  7. # download and install rubygems: http://rubyforge.org/frs/?group_id=126
  8.  
  9. # make symlinks
  10. ln -s /usr/bin/ruby1.8 /usr/bin/ruby
  11. ln -s /usr/bin/gem1.8 /usr/bin/gem
  12.  
  13. gem install rdoc rdoc-data
  14.  
  15. gem install rails
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement