PHP Interpreter not installed (Linux)

I use PhpStorm on Linux Mint 16. I created Hello World, but I'm struggling to start it. I get the error "PHP Interpreter is not installed. Click" Fix "to change the configuration of the project.

enter image description here

When I click "Fix", I get:

enter image description here

Any ideas how to fix this? No interpreter options.

+4
source share
2 answers

You must install PHP. Your IDE is not responsible for this, you need to do it yourself.

See instructions for this site: http://community.linuxmint.com/tutorial/view/486

Update: PHP-, : https://www.jetbrains.com/phpstorm/webhelp/enabling-php-support.html

PHP home /usr/bin linux.

+5

sudo apt-get install php5-dev sudo apt-get install php-pear sudo apt-get install php5-cgi

, php - /usr/bin

+3

All Articles