Skip to content

Instantly share code, notes, and snippets.

@manishkpr
Created March 6, 2018 03:02
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save manishkpr/bbf8bf514395fcf152993c96fa447d4f to your computer and use it in GitHub Desktop.
Save manishkpr/bbf8bf514395fcf152993c96fa447d4f to your computer and use it in GitHub Desktop.
#!/usr/bin/env bash
sudo apt-get -y update
sudo apt-get -y install build-essential zlib1g-dev libssl-dev libxml2-dev libxslt-dev libreadline6-dev libyaml-dev
# apt-get -y install libmysqlclient-dev # uncomment for mysql support
cd /tmp
wget http://ftp.ruby-lang.org/pub/ruby/1.9/ruby-1.9.3-p286.tar.gz
tar -xvzf ruby-1.9.3-p286.tar.gz
cd ruby-1.9.3-p286/
./configure --prefix=/usr/local
sudo make
sudo make install
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment