Skip to content

Instantly share code, notes, and snippets.

@LinuxDevOpsGirl
Created March 3, 2020 10:10
Show Gist options
  • Save LinuxDevOpsGirl/c3264b976d244eb01a3fa7ded826880f to your computer and use it in GitHub Desktop.
Save LinuxDevOpsGirl/c3264b976d244eb01a3fa7ded826880f to your computer and use it in GitHub Desktop.
Ruby 2.5.3
Ruby?
Ruby is an interpreted, high-level, general-purpose programming language.
What is Ruby used for?
Ruby is most used for building web applications. However, it is a general-purpose language similar to Python, so it has many other applications like data analysis, prototyping, and proof of concepts. Probably the most obvious implementation of Ruby is Rails web, the development framework built with Ruby.
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