Open In App

How to install PhpStorm in Ubuntu

Last Updated : 27 Jun, 2022
Improve
Improve
Like Article
Like
Save
Share
Report

PhpStorm is a PHP developer’s environment developed by JetBrains. It has capabilities like code restructuring and autocompletion. CSS, Typescript, Javascript, and other languages are also supported. PhpStorm is not, however, free. Plugins may be used to expand the capabilities of PhpStorm. Support for several PHP frameworks, such as Laravel, is available through plugins. PhpStorm, which adds support for PHP and databases, includes all of the functionality present in WebStorm. JavaScript plugins are included with WebStorm (such as for Node.js).

Installation of PhpStorm:

Step 1: PhpStorm may be obtained by going to JetBrains’ official website and choosing Developer Tools > PhpStorm using your preferred web browser.

 

Step 2: From the panel, pick the Download option.

 

Step 3: Double-check that Linux is selected. Then click on DOWNLOAD.

 

Step 3: Your browser will urge you to save the file. Simply click OK after selecting Save File.

 

Step 4: As you can see, the PhpStorm archive is being downloaded.

 

Ubuntu Installation of PhpStorm

This will walk you through installing PhpStorm on Ubuntu.

Step 1: To begin, navigate to the /Downloads directory using the following command:

cd Downloads

 

Step 2: Now you can see the PhpStorm archive file that we just downloaded. Make a note of the filename. Use the following command to list the files.

ls -lh

 

Step 3: Run the following command to extract the contents of the archive to the /opt directory.

tar -xvf PhpStorm-2022.1.1.tar.gz

 

Step 4: Once the archive has been extracted, a new directory should be created within the /opt directory, as seen in the picture below. Keep in mind the directory’s name.

cd PhpStorm-221.5591.58/bin/

 

Step 5: To launch PhpStorm, run the following command into Terminal:

./phpstorm.sh

 

Now PhpStorm is successfully installed on our Ubuntu operating system.

 


Like Article
Suggest improvement
Share your thoughts in the comments

Similar Reads