Install Ruby on Ubuntu 24.04 Using rbenv and RVM

Ruby is a flexible and object-oriented programming language, ideal for projects ranging from small scripts to large-scale web development. With its clean syntax and interpreter-based execution, Ruby offers rapid development capabilities. Ubuntu 24.04 is a great platform for setting up Ruby, thanks to its up-to-date features and compatibility with Ruby tools and frameworks.

This tutorial covers two primary methods for installing Ruby on Ubuntu 24.04: using rbenv and RVM.

Install Ruby with rbenv

rbenv allows you to manage multiple Ruby versions on your system and easily switch between them.

Step 1: Install Required Dependencies

Begin by setting up the dependencies necessary for compiling Ruby using the ruby-build plugin:

$ sudo apt install autoconf patch build-essential rustc libssl-dev libyaml-dev libreadline6-dev zlib1g-dev libgmp-dev libncurses5-dev libffi-dev libgdbm6 libgdbm-dev libdb-dev libtool uuid-dev

Step 2: Run the rbenv Installer

Download and run the latest rbenv installation script:

$ curl -fsSL https://github.com/rbenv/rbenv-installer/raw/HEAD/bin/rbenv-installer | bash

Step 3: Update the .bashrc File

Append the rbenv path to your shell configuration file:

$ echo 'export PATH="$HOME/.rbenv/bin:$PATH"' >> ~/.bashrc

Step 4: Reload the Shell Configuration

Activate the updated configuration:

Step 5: Verify rbenv Installation

Check if rbenv was successfully installed:

Expected output:

rbenv 1.3.0-9-gefeab7f

Step 6: List Available Ruby Versions

Display the Ruby versions available for installation:

Example output:

  • 3.1.6
  • 3.2.6
  • 3.3.6
  • jruby-9.4.9.0
  • mruby-3.3.0
  • picoruby-3.0.0
  • truffleruby-24.1.1
  • truffleruby+graalvm-24.1.1

Step 7: Install Ruby with rbenv

Choose and install your preferred version, for instance 3.3.6:

The installation process typically takes between 3 to 5 minutes.

Step 8: Set Default Ruby Version

Apply the installed version as the system default:

Step 9: Confirm Installed Ruby Version

Ensure Ruby is set up correctly by checking the version:

Expected result:

ruby 3.3.6 (2024-11-05 revision 75015d4c1f) [x86_64-linux]

Install Ruby with RVM

The Ruby Version Manager (RVM) is a tool for handling multiple Ruby installations on a single server. It allows seamless switching between different Ruby environments.

Step 1: Import RVM GPG Keys

Install the necessary GPG keys:

$ gpg --keyserver keyserver.ubuntu.com --recv-keys 409B6B1796C275462A1703113804BB82D39DC0E3 7D2BAF1CF37B13E2069D6956105BD0E739499BDB

Step 2: Install RVM

Download and install RVM with the following command:

$ curl -sSL https://get.rvm.io | bash -s

Step 3: Activate RVM

Load RVM into your shell session:

$ source ~/.rvm/scripts/rvm

Step 4: Install RVM Dependencies

Execute the following command to install all required packages:

Example output:

Installing required packages: autoconf, automake, bison, libffi-dev, libgdbm-dev, libsqlite3-dev, libtool, libyaml-dev, sqlite3, libgmp-dev, libncurses-dev, libreadline-dev, libssl-dev…

Requirements installation successful.

Step 5: Verify RVM Installation

Ensure RVM is correctly installed by running:

Sample output:

rvm 1.29.12-next (master) by Michal Papis, Piotr Kuczynski, Wayne E. Seguin [https://rvm.io]

Step 6: Display Available Ruby Versions

List all Ruby versions that can be installed via RVM:

Example list includes:

  • [ruby-]1.8.6[-p420]
  • [ruby-]2.7[.8]
  • [ruby-]3.3[.6]
  • ruby-head

Step 7: Install a Ruby Version

Use RVM to install a specific Ruby release like 3.3.6:

Step 8: Make the Ruby Version Default

Set your preferred version as default in the system:

Step 9: List Installed Ruby Versions

See all Ruby versions installed through RVM:

Sample output:

=* ruby-3.3.6 [ x86_64 ]
# => - current
# =* - current && default
# * - default

Install Ruby on Ubuntu 24.04 via APT Package Manager

Although Ruby can be installed using the default APT package manager repositories in Ubuntu, be aware that this method may not provide the most recent version. If you prefer to use APT for simplicity, follow the steps outlined below.

Step 1: Update Package Index

Refresh your server’s local package database to ensure you retrieve the latest available package versions:

Step 2: Install Ruby with APT

Install Ruby from the official Ubuntu repository using the following command:

$ sudo apt install ruby-full

Step 3: Verify Ruby Installation

Ensure Ruby has been successfully installed by checking its version:

Expected output:

ruby 3.2.3 (2024-01-18 revision 52bb2ac0a6) [x86_64-linux-gnu]

How to Uninstall Ruby on Ubuntu 24.04

If you need to remove Ruby from your system, you can do so based on the method you used to install it. Below are instructions for uninstalling Ruby using rbenv, RVM, or APT.

Remove Ruby Installed with rbenv

Use the following command to remove a specific Ruby version installed via rbenv. Example below uses version 3.3.6:

Remove Ruby Installed with RVM

If you installed Ruby using RVM, use this command to remove version 3.3.6 or any other installed version:

Uninstall Ruby Installed via APT

Use APT to remove Ruby if it was installed with the package manager:

$ sudo apt autoremove ruby-full

Conclusion

In this guide, you’ve learned how to install Ruby on Ubuntu 24.04 using three different methods: rbenv, RVM, and APT. With rbenv and RVM, you gain more flexibility to handle multiple Ruby versions for various development projects.

Source: vultr.com

Create a Free Account

Register now and get access to our Cloud Services.

Posts you might be interested in:

Moderne Hosting Services mit Cloud Server, Managed Server und skalierbarem Cloud Hosting für professionelle IT-Infrastrukturen

Install and Use Gradle on Ubuntu 24.04

Tutorial, Ubuntu

Linux file permissions with this comprehensive guide. Understand how to utilize chmod and chown commands to assign appropriate access rights, and gain insights into special permission bits like SUID, SGID, and the sticky bit to enhance your system’s security framework.