Apparently Ubuntu now has a packages called ruby-full so you can just type in apt-get install ruby-full or use the Synaptic Package Manager to install ruby. Ryan
Rob Kaufman wrote: > Hey Scott, Ryan, > Thanks, That is super timely... I'm actually doing a Kubuntu install > as I read this (waiting for CD to boot ;-). > > Rob > > On Wed, Jun 4, 2008 at 11:21 PM, Ryan Felton <[EMAIL PROTECTED] > <mailto:[EMAIL PROTECTED]>> wrote: > > Rails is super easy to install on Ubuntu. > > # Ubuntu Updates > # --------------------------------- > apt-get update > apt-get -y upgrade > > # Basic Compiler > # --------------------------------- > apt-get install -y build-essential > > # ImageMagick > # ------------------------------------------- > apt-get install -y imagemagick libmagick9 libmagick9-dev > libmagick++9-dev libmagick++9c2a librmagick-ruby > > # Ruby > # ------------------------------------------- > apt-get install -y libreadline5 libreadline5-dev > libreadline-ruby ruby ri rdoc irb ruby1.8-dev > apt-get install -y libruby libmysql-ruby libzlib-ruby libyaml-ruby > libreadline-ruby libdrb-ruby liberb-ruby libopenssl-ruby > apt-get install -y rubygems > > # Ruby Gems > # ------------------------------------------- > gem update --system --no-rdoc --no-ri > gem install rake --no-rdoc --no-ri > gem install rails --no-rdoc --no-ri > gem install aws-s3 --no-rdoc --no-ri > gem install capistrano --no-rdoc --no-ri > gem install god --no-rdoc --no-ri > gem install mongrel --no-rdoc --no-ri > gem install mongrel_cluster --no-rdoc --no-ri > gem install rmagick --no-rdoc --no-ri > gem install termios --no-rdoc --no-ri > > # MySQL > # ------------------------------------------- > apt-get install mysql-server mysql-client libmysqlclient15-dev > libmysql-ruby1.8 -y > > > > On Jun 4, 2008, at 7:17 PM, Scott Olmsted wrote: > > I am setting up a Rails 2.0.2 development environment under > Kubuntu 8.04. Decision: install components (Ruby, Rails, MySQL, > etc) or install a pre-made stack such as RM-Install from FiveRuns. > > Advice? Anyone with Kubuntu or other Linux experience? > > > > > > > > > --~--~---------~--~----~------------~-------~--~----~ SD Ruby mailing list [email protected] http://groups.google.com/group/sdruby -~----------~----~----~----~------~----~------~--~---
