Here's what I did to install rvm ... << #Install RVM and ruby 1.9.2 on Ubuntu sudo apt-get install curl build-essential libssl-dev libreadline5-dev bash < <( curl http://rvm.beginrescueend.com/releases/rvm-install-head ) # Add to end of .bashrc file ... if [[ -s "$HOME/.rvm/scripts/rvm" ]] ; then source "$HOME/.rvm/scripts/rvm" ; fi # Open a new terminal type rvm | head -n1 # Should see "rvm is a function" rvm notes # to make sure of a good install rvm install 1.9.2 # Installs ruby 1.9.2 rvm --default ruby-1.9.2 # Makes 1.9.2 the default ruby ruby -v # Should see the 1.9.2 message >>
I can't remember where I got this to give credit where credit is due, but googling should help. Scott On Tue, Jul 5, 2011 at 9:40 PM, Todd A. Jacobs <[email protected]> wrote: > On Jul 5, 2:38 am, kimptoc <[email protected]> wrote: > > Just spent a couple of hours trying to get the heroku command line > > installed on a friends Ubuntu box, but still no joy. > > The Heroku gem works fine under Ubuntu when using RVM. You just need > to ensure you have all the RVM dependencies installed: > > sudo aptitude install build-essential bison openssl libreadline6 > libreadline6-dev curl git zlib1g zlib1g-dev libssl-dev libyaml-dev > libsqlite3-0 libsqlite3-dev sqlite3 libxml2-dev libxslt-dev autoconf > libc6-dev ncurses-dev subversion > > > After that, install rvm, install a ruby, and then install heroku. > Works fine here on Ubuntu 11.04. > > -- > You received this message because you are subscribed to the Google Groups > "Heroku" group. > To post to this group, send email to [email protected]. > To unsubscribe from this group, send email to > [email protected]. > For more options, visit this group at > http://groups.google.com/group/heroku?hl=en. > > -- Scott http://steamcode.blogspot.com/ -- You received this message because you are subscribed to the Google Groups "Heroku" group. To post to this group, send email to [email protected]. To unsubscribe from this group, send email to [email protected]. For more options, visit this group at http://groups.google.com/group/heroku?hl=en.
