aayushi
aayushi

Reputation: 161

Deploying an app to Google App Engine

I am trying to deploy an app to Google App Engine. I have followed these steps.

However, I am not clear how to perform this step:

appcfg.py update guestbook/

When I run this command

c:/python27 >> appcfg.py update guestbook/

It will open appcfg.py file in editor. How to run this command?

Upvotes: 0

Views: 123

Answers (1)

Manu Manjunath
Manu Manjunath

Reputation: 6401

On Windows when you type appcfg.py in command line the file will be opened by associated application.

So, you need to execute your command as follows:

<path-to-python-executable> appcfg.py update guestbook

In my case, <path-to-python-executable> is C:\Cygwin\bin\python2.7.exe

Upvotes: 1

Related Questions