Skip to content

Instantly share code, notes, and snippets.

@ispguru
Last active January 20, 2020 17:00
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 ispguru/5642332e4a60135ae8e7c201d7d03081 to your computer and use it in GitHub Desktop.
Save ispguru/5642332e4a60135ae8e7c201d7d03081 to your computer and use it in GitHub Desktop.
Install ruby2.5.3 on ubuntu 18.04
#!/bin/bash
sudo apt update
wget https://cache.ruby-lang.org/pub/ruby/2.5/ruby-2.5.3.zip
sudo unzip ruby-2.5.3.zip
cd ruby-2.5.3
sudo ./configure
sudo make
sudo make check
sudo make install
#to check ruby version
sudo ruby -v
#youtube link https://youtu.be/6TVsp0xPiIE
@UbuntuEvangelist
Copy link

Good

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