PHPStorm for Ubuntu: Latest Version Installation & Update Guide
To get the latest version of PHPStorm on Ubuntu, you can choose from three reliable methods—Snap (recommended for automatic updates), Manual Download (official but requires manual updates), or JetBrains Toolbox (centralized tool management). Below are detailed steps for each approach:
Snap is a package manager that simplifies installation and ensures you always have the latest version.
sudo apt update && sudo apt install snapd
sudo snap install phpstorm --classic
sudo snap refresh phpstorm
This method is ideal for users who want hassle-free updates.
For users who prefer direct control over the installation files:
.tar.gz archive for Ubuntu.cd ~/Downloads
/opt (a standard location for applications):sudo tar -xvzf phpstorm-*.tar.gz -C /opt/
sudo ln -s /opt/phpstorm/bin/phpstorm.sh /usr/local/bin/phpstorm
phpstorm in Terminal, or find it in the application menu./opt/phpstorm folder with the new one.The Toolbox App lets you manage all JetBrains products (including PHPStorm) from a single interface, with automatic updates.
sudo apt install openjdk-11-jdk
By following these methods, you can easily install or update PHPStorm to the latest version on Ubuntu, ensuring access to the newest features and bug fixes.