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.
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 easiest way to install RubyMine on Ubuntu is by using the JetBrains Toolbox App, which is the official tool for managing all your JetBrains software.
- 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 install RubyMine on Ubuntu using Snap, a package manager that’s often already on your system and makes updates simple.
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 offers another way to install RubyMine on Ubuntu, keeping the application separate from your main system files in a secure container.
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?
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.
No comments yet — be the first to share your thoughts!