Skip to content

All topics  /  Linux

How to Install Ruby on Ubuntu?

Linux ·

Hello Friends,

In this article we will cover how to implement Ruby on Ubuntu. you will learn how to install ruby on rails with rbenv on Ubuntu. it's a simple example of installing Ruby on Ubuntu. I would like to show you how to set up Ruby on Ubuntu.

Installing and Uninstalling Ruby on Linux Ubuntu 22.04: In this tutorial, we will learn how to install and uninstall Ruby on a Linux Ubuntu 22.04 system

Step 1: Update system Dependencies


Open the terminal and execute the following command on the command line to update system dependencies:

sudo apt update

Step 2: Install Ruby on Ubuntu

Then execute the following command on the command line to install ruby full-on Linux Ubuntu system:

sudo apt install ruby-full

Step 3: Verify Installation

Use the following command on the command line to verify ruby’s complete installation on Linux Ubuntu:

ruby --version

Step 4: Uninstall Ruby on Ubuntu

Use the following command on the command line to uninstall ruby from the linux ubuntu system:

sudo apt remove --autoremove ruby