How to Install RubyMine on Ubuntu 24.04
This article explains how to install RubyMine on Ubuntu 24.04 in 2026.
RubyMine is a powerful tool for writing Ruby and Ruby on Rails code. It was created by JetBrains. Why use it? It helps you write, fix, and improve your code much faster. What happens when done? You get a professional workspace to build your applications.
RubyMine now includes the JetBrains AI Assistant. This tool helps you generate code automatically and makes it easier to clean up your existing work.
Install using the JetBrains Toolbox App
The best way to install RubyMine is the JetBrains Toolbox App. It manages your apps, handles updates, and keeps everything organized. Why use it? It is the official method that ensures you have the most stable version of your software. What happens when done? You get a simple dashboard to launch and update your tools.
- Go to the official JetBrains website and download the Toolbox App.
- Extract the downloaded file and run the installer.
- Open the Toolbox App once it is installed.
- Find RubyMine in the list and click Install.

Install RubyMine via Snap
You can also use the Snap package manager. This is pre-installed on most Ubuntu versions. Why use it? It is easy to use and automatically keeps the app updated. What happens when done? The app is installed and ready to use from your 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 option for installing software. Please note: Flatpak is a community-maintained package. For the most stable and reliable experience, we recommend using the official JetBrains Toolbox App instead. Why use it? It keeps the app in a safe, isolated container. What happens when done? You get a secure version of the app that does not interfere with other files on your system.
First, install Flatpak if you do not 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 now know 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 are finished, you will have a modern environment ready for your development projects.
[signed-by=/usr/share/keyrings/jetbrains-ppa-archive-keyring.gpg]
Was this guide helpful?
Leave a Reply