Re: Heroku client on Ubuntu - any good install guides?

2011-07-07 Thread kimptoc
Work in progress:

http://wp.kimptoc.net/2011/07/installing-heroku-client-on-ubuntu-10-under-rvm/

Regards,
Chris

-- 
You received this message because you are subscribed to the Google Groups 
Heroku group.
To post to this group, send email to heroku@googlegroups.com.
To unsubscribe from this group, send email to 
heroku+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/heroku?hl=en.



Re: Heroku client on Ubuntu - any good install guides?

2011-07-06 Thread kimptoc
Hi,

Thanks Scott and Todd - I have passed on Todd's install line to my
friend - hopefully that will resolve the last issues.

Strange that installing the heroku gem did not pull in its
dependancies - I guess thats related to the missing system components.

I should write this up as a blog post.

Thanks,
Chris

-- 
You received this message because you are subscribed to the Google Groups 
Heroku group.
To post to this group, send email to heroku@googlegroups.com.
To unsubscribe from this group, send email to 
heroku+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/heroku?hl=en.



Re: Heroku client on Ubuntu - any good install guides?

2011-07-05 Thread Todd A. Jacobs
On Jul 5, 2:38 am, kimptoc ch...@kimptoc.net 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 heroku@googlegroups.com.
To unsubscribe from this group, send email to 
heroku+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/heroku?hl=en.



Re: Heroku client on Ubuntu - any good install guides?

2011-07-05 Thread Scott LaBounty
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 nos...@codegnome.org wrote:

 On Jul 5, 2:38 am, kimptoc ch...@kimptoc.net 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 heroku@googlegroups.com.
 To unsubscribe from this group, send email to
 heroku+unsubscr...@googlegroups.com.
 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 heroku@googlegroups.com.
To unsubscribe from this group, send email to 
heroku+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/heroku?hl=en.