Skip to content

Instantly share code, notes, and snippets.

@rsporteman
Created September 21, 2018 15:00
Show Gist options
  • Save rsporteman/23e25164f215eec583d8de57fc432be0 to your computer and use it in GitHub Desktop.
Save rsporteman/23e25164f215eec583d8de57fc432be0 to your computer and use it in GitHub Desktop.
Install PHPStorm IDE On Debian 9 Stretch

Install PHPStorm IDE On Debian 9 Stretch

Download PHPStorm IDE (check last version first)

wget https://download-cf.jetbrains.com/webide/PhpStorm-2018.2.3.tar.gz

Extract

tar -vzxf PhpStorm-*.tar.gz
rm PhpStorm-*.tar.gz

Make directory

sudo mkdir /usr/local/PhpStorm
sudo chown YOUR_USERNAME /usr/local/PhpStorm

Move PHPStorm

mv PhpStorm-*/* /usr/local/PhpStorm/

Install PHPStorm

sudo chmod +x /usr/local/PhpStorm/bin/phpstorm.sh
/usr/local/PhpStorm/bin/phpstorm.sh
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment