Follow
Ubuntu Linux

How to Install RubyMine on Ubuntu 24.04

Richard
Written by
Richard
Apr 2, 2025 Updated Apr 18, 2026 3 min read
How to Install RubyMine on Ubuntu 24.04
How to Install RubyMine on Ubuntu 24.04

You install RubyMine on Ubuntu 24.04 by using its official Snap package or by downloading the tar.gz archive from JetBrains.

RubyMine is an integrated development environment (IDE) specifically designed for Ruby and Ruby on Rails development. It offers advanced coding assistance, debugging tools, and performance analysis to boost your productivity.

This guide focuses on the Snap installation method, which is generally the most straightforward for Ubuntu users. The latest version, RubyMine 2023.3, integrates features like the JetBrains AI Assistant for code generation and cleanup.

⚡ Quick Answer

Install RubyMine using the JetBrains Toolbox App by downloading it from the official website, running the installer, and then clicking “Install” next to RubyMine within the app. Alternatively, use the command sudo snap install rubymine –classic.

Install using the JetBrains Toolbox App

The best way to install RubyMine is with the JetBrains Toolbox App. This tool manages your applications, handles updates, and keeps everything organized. Using the Toolbox App is the official method, ensuring you always have the most stable version of your software. It provides a simple dashboard to launch and update all your development tools.

  1. Go to the official JetBrains website and download the Toolbox App.
  2. Extract the downloaded file and run the installer.
  3. Open the Toolbox App once it is installed.
  4. Find RubyMine in the list and click Install.
RubyMine Ubuntu
RubyMine Ubuntu

Install RubyMine via Snap

Another option is to use the Snap package manager, which is pre-installed on most Ubuntu versions. Snap makes it convenient to use and automatically keeps the app updated. Once installed, the app is ready to use directly from your applications menu.

Run this command to install:

sudo snap install rubymine –classic

You can launch it by searching for RubyMine in your applications menu or by typing snap run rubymine in your terminal.

To remove the app, use:

sudo snap remove rubymine

Install RubyMine via Flatpak

Flatpak is another method for installing software. Keep in mind that Flatpak is a community-maintained package. For the most stable and reliable experience, we recommend using the official JetBrains Toolbox App instead. Flatpak keeps the app in a safe, isolated container, meaning you get a secure version that doesn’t interfere with other files on your system.

First, install Flatpak if you don’t have it:

sudo apt update && sudo apt install flatpak

Next, add the Flathub repository:

sudo flatpak remote-add –if-not-exists flathub https://flathub.org/repo/flathub.flatpakrepo

Finally, install RubyMine:

flatpak install flathub com.jetbrains.RubyMine

To remove the app later, use this command:

flatpak uninstall –delete-data com.jetbrains.RubyMine

Conclusion

You’ve now learned how to install RubyMine on Ubuntu 24.04. We recommend the JetBrains Toolbox App for the best experience. Snap and Flatpak are good alternatives if you prefer those systems. Once you’re finished, you’ll have a modern environment ready for your development projects.

[signed-by=/usr/share/keyrings/jetbrains-ppa-archive-keyring.gpg]

How to install RubyMine?

Visit the official JetBrains website and click download. You’ll see the Windows version, which includes a 30-day trial.

How to run a Ruby program in Ubuntu terminal?

To run Ruby code, type ruby into your command prompt or terminal and press Enter. If you haven’t installed Ruby yet, you can get it from Rubyinstaller.org (Windows), Homebrew (Mac), or your Linux system’s package manager. You can check your Ruby version using the command ruby -v.

How do I install gems on Ubuntu?

Ubuntu. Open the ‘Software Center’ app from your launcher and type RubyGems (without quotes) into the application search box at the top right, then press [enter]. RubyGems can then be installed by clicking the ‘Install’ button.

Was this guide helpful?

Was this helpful?
Richard

About the Author

Richard

Tech Writer, IT Professional

Richard, a writer for Geek Rewind, is a tech enthusiast who loves breaking down complex IT topics into simple, easy-to-understand ideas. With years of hands-on experience in system administration and enterprise IT operations, he’s developed a knack for offering practical tips and solutions. Richard aims to make technology more accessible and actionable. He's deeply committed to the Geek Rewind community, always ready to answer questions and engage in discussions.

📚 Related Tutorials

How to Install GNOME Desktop on Ubuntu 24.04
Ubuntu Linux How to Install GNOME Desktop on Ubuntu 24.04
How to Install KDE Desktop on Ubuntu 24.04
Ubuntu Linux How to Install KDE Desktop on Ubuntu 24.04

No comments yet — be the first to share your thoughts!

Leave a Comment

Your email address will not be published. Required fields are marked *