Skip to content

Instantly share code, notes, and snippets.

@mgax
Last active October 28, 2017 10:49
Show Gist options
  • Save mgax/bc84adde8ab45aa7509e27cf96c9b0ac to your computer and use it in GitHub Desktop.
Save mgax/bc84adde8ab45aa7509e27cf96c9b0ac to your computer and use it in GitHub Desktop.
ruby on jessie

Ruby 2.4.2 on Jessie

sudo apt install build-essential libz-dev libssl-dev
mkdir -p ~/tmp; cd ~/tmp
curl https://cache.ruby-lang.org/pub/ruby/2.4/ruby-2.4.2.tar.xz | xzcat | tar x
cd ruby-2.4.2
./configure --prefix ~/local/ruby-2.4.2
make -j 6
make install
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment