php

How to install PhpStorm on Ubuntu 20.04?

Developed by JetBrains, PhpStorm is a feature-rich development environment for PHP developers. It provides code refactoring and autocompletion features. Besides PHP, it also supports CSS, Typescript Javascript, etc. However, the PhpStorm is not free. You need to buy its subscription for permanent use. But the good thing is, JetBrains initially provides a free 30 days trial period.

The PhpStorm’s features can be extended by adding plugins. Through plugins, you can get support for various PHP frameworks like Laravel.

The PhpStorm is available from the JetBrains official webpage in the form of a tarball. Additionally, we can also install PhpStorm via snap. As of preparing this article, the newest release of PhpStorm is 2020.3.1.

Install and use PhpStorm from the source tarball

Visit the PhpStorm JetBrains official website (https://www.jetbrains.com/phpstorm/), and click on ‘Download now’.

Click on ‘Download’ to download the PhpStorm tarball for Linux.

Click on ‘Save file’ and then click on ‘OK’.

The PhpStorm tarball will be downloaded and saved in the ‘Downloads’ directory. Fire up the terminal and navigate to the Downloads directory:

$ cd Downloads

Extract the PhpStorm tarball using the command below:

$ tar -xvf PhpStorm-2020.3.1.tar.gz

When the tarball is extracted successfully, navigate to the ‘PhpStorm-203.6682.180/bin/’using the command:

$ cd PhpStorm-203.6682.180/bin/

Now, execute the phpstorm.sh file:

$ ./phpstorm.sh

The PhpStorm will be opened.

From the PhpStorm welcome screen, you can create New Project, Open the existing project, customize the IDE, and install Plugins.

You can change the PhpStorm IDE theme from ‘Customize’. Click on ‘Customize’ and choose your favorite theme from the given list.

To install plugins, click on ‘Plugins’, then select the plugin that you want to install.

Next, click on the ‘Install’ button.

Install PhpStorm via snap

Snap comes pre-installed on Ubuntu 20.04. To install PhpStorm via snap, execute the below-given command:

$ sudo snap install phpstorm --classic

Once the PhpStorm is installed successfully using snap, verify the installation with the command:

The output confirms the installation of PhpStorm.

Conclusion

PhpStorm is a popular PHP editor and can be installed on Ubuntu 20.04 through tarball and snap.

This article explains the PhpStorm installation on Ubuntu 20.04.

About the author

Kamran Sattar Awaisi

I am a software engineer and a research scholar. I like to write article and make tutorial on various IT topics including Python, Cloud Computing, Fog Computing and Deep Learning. I love to use Linux based operating systems.