Skip to content
Follow
Ubuntu Linux

How to Install PhpStorm on Ubuntu 24.04

Richard
Written by
Richard
Apr 2, 2025 Updated Jul 13, 2026 3 min read
How to Install PhpStorm on Ubuntu 24.04
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.

⚡ Quick Answer

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.

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

Install PhpStorm Ubuntu Linux
Install PhpStorm Ubuntu Linux

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.

📝Note
Always verify the integrity of the downloaded file by checking its checksum against the value provided on the download page. This ensures the file was not corrupted during the download.

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?

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 Additional Software on Ubuntu
Ubuntu Linux How to Install Additional Software on Ubuntu

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

Leave a Comment

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