Google App Engine environment setup

I am trying to setup the environment for Google App Engine in PHP. I have downloaded the SDK for PHP. And I have also downloaded the python 2.7.7 64 bit and installed both. I tried to run the hello world program from https://github.com/GoogleCloudPlatform/appengine-php-guestbook/archive/phase0-helloworld.zip and extracted it in a folder named helloworld(In this folder 3 files are stored app.yaml,helloworld.php,README.md) then I added it and tried to run it. After running I get this error

enter image description here

can anyone help me? plz

Upvotes: 1

Views: 64

Answers (1)

This problem I faced because of the version of python I was using(3.4.2). It should be python 2.7 . Otherwise you will face this error.

Upvotes: 2

Related Questions