Skip to content

Instantly share code, notes, and snippets.

@linuxfemale
Created November 18, 2019 15:14
Show Gist options
  • Save linuxfemale/80fc4cae044a767ff36fb59e5bee0f56 to your computer and use it in GitHub Desktop.
Save linuxfemale/80fc4cae044a767ff36fb59e5bee0f56 to your computer and use it in GitHub Desktop.
Ruby on Ubuntu 18.04 LTS
sudo apt update && sudo apt upgrade -y
cd ~/Downloads/
sudo wget https://cache.ruby-lang.org/pub/ruby/2.5/ruby-2.5.3.zip
sudo apt-get install unzip -y &&
sudo unzip ruby-2.5.3.zip -d ~/Downloads/
cd ruby-2.5.3 && sudo ./configure && sudo make && sudo make install
ruby --version
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment