0

I'm having a frustrating issue with using google app engine for the first time. I'm trying to follow the beginner's tutorial offered on google page to create a Guestbook application using python on google cloud.

this is the link for the tutorial Creating a Guestbook Application

And this what I get after running this line dev_appserver.py ./ in the Git Shell:

error in the git shell

speedplane
  • 15,673
  • 16
  • 86
  • 138

1 Answers1

0

Go back to the directions for the guestbook and make sure you completed step #2 properly. It looks like you have not properly installed the App Engine SDK.

Also, after installation, you need to make sure that the App Engine SDK is in your system PATH. To do this:

  1. Right click on My Computer
  2. Click on Advanced System Settings on the left
  3. Under the "Advanced" tab, click on Environment Variables
  4. Edit the "PATH" environment variable
  5. Make sure the Google SDK directory is listed there (it should probably be set to C:\Program Files (x86)\Google\Cloud SDK\google-cloud-sdk\bin, but it may differ depending on your installation).
speedplane
  • 15,673
  • 16
  • 86
  • 138