Created
November 18, 2019 15:14
-
-
Save linuxfemale/80fc4cae044a767ff36fb59e5bee0f56 to your computer and use it in GitHub Desktop.
Ruby on Ubuntu 18.04 LTS
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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