How to Install PhpStorm on Ubuntu 24.04
Installing PhpStorm on Ubuntu 24.04 lets you choose between an easy Snap package or a manual setup from a downloaded file.
PhpStorm is a powerful tool called an Integrated Development Environment (IDE), which developers use to write and manage computer code for projects.
It helps programmers write code faster with features like smart code suggestions, debugging tools, and built-in support for version control systems. The current version, PhpStorm 2024.1, brings improved support for PHP 8.3 and new frameworks.
Install PhpStorm on Ubuntu 24.04 using Snap by opening a terminal and running `sudo snap install phpstorm –classic`. You can also use the JetBrains Toolbox App or Flatpak for installation.
Recommended Method: JetBrains Toolbox App
The JetBrains Toolbox App provides a recommended method for installing PhpStorm. This app manages all your JetBrains software in one place. It automatically keeps software updated and handles installations. You can download the JetBrains Toolbox App directly from the official JetBrains website.
Prepare Ubuntu
Updating your Ubuntu 24.04 system before installing PhpStorm ensures you have the latest software. Run `sudo apt update` to fetch software lists, and then `sudo apt upgrade` to install any available updates. This update process helps prevent problems when you install new programs like PhpStorm.
sudo apt update && sudo apt upgrade -y
Install PhpStorm via Snap
Installing PhpStorm on Ubuntu 24.04 using Snap is a process that keeps the application updated automatically in a self-contained package.
Run this command to install it:
sudo snap install phpstorm –classic

You can launch it from your desktop menu or by typing phpstorm in the terminal.
Manual Installation
Manual PhpStorm installation on Ubuntu 24.04 requires downloading the official archive file from JetBrains. This download method grants you complete control over the PhpStorm installation. After downloading, check the archive file’s checksum to confirm it downloaded correctly. You’ll usually find this on the JetBrains download page, for example, for version 2023.3.
Install PhpStorm via Flatpak
Flatpak installation on Ubuntu 24.04 provides a method for installing PhpStorm. PhpStorm, a developer tool, runs in its own secure sandbox. This sandbox helps prevent PhpStorm from damaging your system files. To install PhpStorm using Flatpak, you’ll first need to install the Flatpak package manager, then add the Flathub app collection, and finally run the PhpStorm setup command.
First, install Flatpak:
sudo apt install flatpak
Add the Flathub repository:
sudo flatpak remote-add –if-not-exists flathub https://flathub.org/repo/flathub.flatpakrepo
Finally, install PhpStorm:
flatpak install flathub com.jetbrains.PhpStorm
Conclusion
- Multiple Methods: You can choose between the Toolbox App, Snap, or Flatpak based on your needs.
- Powerful Tools: PhpStorm offers smart code completion and debugging to make your work easier.
- Framework Ready: It works great with Laravel, Symfony, and modern web tech.
- Trial Access: You get a 30-day free trial to test all features before buying a license.
PhpStorm on Ubuntu 24.04 installs using Toolbox App, Snap, or Flatpak. PhpStorm provides smart code completion and debugging tools, helping you code efficiently. This integrated development environment supports popular frameworks such as Laravel and Symfony, and you can try PhpStorm free for 30 days.
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!