Skip to content
Follow
Ubuntu Linux

How to Install PhpStorm on Ubuntu 24.04

Richard
Written by
Richard
Apr 2, 2025 Updated Aug 13, 2026 3 min read
How to Install PhpStorm on Ubuntu 24.04
How to Install PhpStorm on Ubuntu 24.04

PhpStorm on Ubuntu 24.04 runs best when you install it through the JetBrains Toolbox App, a Snap package, or a manual download. PhpStorm is a code editor made for building PHP websites and apps. It gives you smart code hints, testing tools, and git support to help you write code faster.

PhpStorm 2024.1 adds full support for PHP 8.3 and modern web frameworks. You can set it up on your desktop in just a few minutes using whichever install method fits your workflow best.

⚡ 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

Refresh local package lists and install current system updates before proceeding. 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 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

Launch the application 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 complete control over the PhpStorm installation. Check the archive file's checksum after downloading to confirm it downloaded correctly. This verification value typically appears 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 an alternative method for setting up PhpStorm. PhpStorm, a developer tool, runs inside its own secure sandbox. This isolation helps prevent PhpStorm from altering or damaging your system files. Installing PhpStorm using Flatpak requires adding the Flatpak package manager, connecting the Flathub app collection, and running the final 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.

Toolbox App, Snap, or Flatpak deployments let you get PhpStorm running on Ubuntu 24.04. Smart code completion and debugging tools help you code efficiently. This integrated development environment supports popular frameworks such as Laravel and Symfony, and a 30-day free trial lets you test the software before committing.

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
Install Symfony 5 on Ubuntu with Apache
Ubuntu Linux Install Symfony 5 on Ubuntu with Apache
How to Install Symfony 5 with Nginx on Ubuntu Linux
Ubuntu Linux How to Install Symfony 5 with Nginx on Ubuntu Linux
How to Install PHP on Ubuntu Linux
Ubuntu Linux How to Install PHP on Ubuntu Linux

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

Leave a Comment

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