Skip to content

Instantly share code, notes, and snippets.

@sroysf
Created July 15, 2011 01:29
Show Gist options
  • Star 1 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save sroysf/1083861 to your computer and use it in GitHub Desktop.
Save sroysf/1083861 to your computer and use it in GitHub Desktop.
Getting started with Heroku client on Ubuntu 10.04

Getting started with Heroku client on Ubuntu 10.04

Note : This actually does work on a GSE Linux box as well.

First, prepare your system with all the libraries needed for Ruby / RVM. You will need to pay attention to the output from aptitude as it resolves the various dependencies. You may or may not have conflicts depending on your specific system setup. Make sure that you agree with what aptitude is about to do before proceeding.

sudo aptitude install build-essential bison openssl libreadline6 libreadline6-dev curl git 
sudo aptitude install zlib1g zlib1g-dev libssl-dev libyaml-dev libsqlite3-0 libsqlite3-dev 
sudo aptitude install sqlite3 libxml2-dev libxslt-dev autoconf libc6-dev ncurses-dev subversion

Next, install rvm :

bash < <(curl -s https://rvm.beginrescueend.com/install/rvm)

Open a new shell in order to get rvm on your path. The install already modified your .bashrc for you.

Now install ruby itself :

rvm install 1.9.2

Make ruby 1.9.2 the default...

rvm use 1.9.2 --default

Install the gems necessary to run the Heroku client:

gem install rest-client mime-types launchy heroku

Test your installation:

heroku login
heroku apps
@jamesward
Copy link

Have you tried the instructions from my node.js blog?
http://www.jamesward.com/2011/06/21/getting-started-with-node-js-on-the-cloud/

I'm on Ubuntu with root.

@sroysf
Copy link
Author

sroysf commented Jul 15, 2011 via email

@pfmorelli
Copy link

Here's my simplified version.

  • Install rvm dependencies:

sudo apt-get install git-core curl

  • Install rvm:

bash < <(curl -s https://rvm.beginrescueend.com/install/rvm)

  • CLOSELY follow the instruction the rvm installer prints out, esp the dependencies required for building ruby, and the .bashrc recommended edits around && return.
  • Use rvm to install the latest ruby:
rvm install 1.9.2
rvm use 1.9.2 –default
  • Install and test Heroku:
gem install heroku
heroku login
heroku apps

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment