How to Install Ruby on Linux

Easy Steps to Install Ruby on Linux

A woman working at a computer using software to analyze qualitative data.
mihailomilovanovic/Getty Images

Ruby is installed on most Linux distributions by default. However, you can follow the steps below to determine if Ruby is installed and, if not, install the Ruby interpreter on your Linux computer.

How to Install Ruby on Linux

For an Ubuntu-based distribution, follow the following procedure to verify whether you have Ruby installed, and if not, to install it.

  1. Open a terminal window. One way open the terminal window (sometimes called a "shell" or "bash shell") is to select Applications > Accessories > Terminal.
  2. Run the command which ruby. If you see a path such as /usr/bin/ruby, Ruby is installed. If you don't see any response or get an error message, Ruby is not installed.
  3. To verify that you have a current version of Ruby, run the command ruby -v.
  4. Compare the version number returned with the version number on the Ruby download page.
    These numbers don't have to be exact, but if you are running a version that's too old, some of the features may not work correctly.
  5. Install appropriate Ruby packages. This process differs between distributions, but on Ubuntu run the following command:
    sudo apt-get install ruby-full

Verify That Ruby Works Correctly

Open a text editor and save the following as test.rb.

#!/usr/bin/env ruby
puts "Hello world!"

In the terminal window, change directory to the directory where you saved test.rb. Run the command

chmod +x test.rb
, then run the command
./test.rb

You should see the message Hello world! displayed if Ruby is installed correctly.

Tips:

  1. Every distribution is different. Refer to your distribution's documentation and community forums for help installing Ruby on distributions other than Ubuntu or its variants.
  2. For distributions other than Ubuntu, if your distribution doesn't provide a tool like apt-get then you can use a site such as RPMFind to find Ruby packages. Look for the irb, ri and rdoc packages as well, but depending on how the RPM package was built, it may already include these programs.
Format
mla apa chicago
Your Citation
Morin, Michael. "How to Install Ruby on Linux." ThoughtCo, Aug. 26, 2020, thoughtco.com/instal-ruby-on-linux-2908370. Morin, Michael. (2020, August 26). How to Install Ruby on Linux. Retrieved from https://www.thoughtco.com/instal-ruby-on-linux-2908370 Morin, Michael. "How to Install Ruby on Linux." ThoughtCo. https://www.thoughtco.com/instal-ruby-on-linux-2908370 (accessed March 19, 2024).