Open In App

How to install RubyMine on Ubuntu

Last Updated : 27 Jun, 2022
Improve
Improve
Like Article
Like
Save
Share
Report

RubyMine is an integrated development environment (IDE) that aids productivity in all aspects of Ruby/Rails project development, from creating and debugging code to testing and delivering a finished application. RubyMine is available for macOS, Windows, and Linux, among other platforms.

JetBrains’ RubyMine is a sophisticated Ruby IDE. Ruby Mining, like all other JetBrains IDEs, includes clever auto-completion and a variety of additional capabilities to help you quickly build and debug your Ruby application. I’ll teach you how to install RubyMine on Ubuntu in this article. The instructions in this article should work on Ubuntu 16.04 LTS and later. For the example, We’ll be using Ubuntu 20.04 LTS. So, let’s get started.

Ruby Programming Language Installation

RubyMine requires that you have the Ruby programming language installed on your PC in order to run Ruby applications.

Step 1: The Ruby programming language may be installed on Ubuntu using the following command:

sudo apt install ruby-full
how to install RubyMine on Ubuntu

 

Step 2: To continue, hit y and then enter.

how to install RubyMine on Ubuntu

 

Ruby should be set up. 

RubyMine Installation

RubyMine is available as a SNAP package for Ubuntu 16.04 LTS and later. So, you may get the newest version of RubyMine from Ubuntu’s official SNAP package repository for Ubuntu 16.04 LTS and later.

Step 1: Run the following command on Ubuntu 16.04 LTS and later to install the RubyMine SNAP package:

 sudo snap install rubymine --classic
how to install RubyMine on Ubuntu

 

Step 2: The snap package for RubyMine is being downloaded.

how to install RubyMine on Ubuntu

 

Step 3: RubyMine has been set up.

how to install RubyMine on Ubuntu

 

Step 4: After the installation, you can put the following command in your terminal and then press enter to start the RubyMine application.

rubymine
how to install RubyMine on Ubuntu

 

Step 5: As seen in the picture below, you may now start RubyMine from the Ubuntu Application Menu.

how to install RubyMine on Ubuntu

 

Now, RubyMine is Successfully installed on our Ubuntu operating system.

 


Like Article
Suggest improvement
Previous
Next
Share your thoughts in the comments

Similar Reads