Installing Google App Engine SDK on Windows
Installing the Google App Engine SDK for Windows is fairly straightforward. You can download the SDK here. Before installing it on Windows make sure you have python 2.5 installed:
http://www.activestate.com/solutions/python/
It is a free download from ActiveState. The Google App Engine SDK install will fail if python is not installed first.
By default the installer will install python in C:\Python2.5\ . Once the install is complete double click on the Windows Installer application for the SDK (GoogleAppEngine.msi).
By default it installs the SDK in :
C:\Program Files\Google\google_appengine\
But I prefer to have it installed at:
C:\google_appengine
After you set the directory for the SDK the installer should complete. Now you can go to the command line and go to the google_appengine directory.
The SDK comes with a simple application called guestbook. To see if your installation succeeded type the following from the google_appengine directory:
> dev_appserver demos/guestbook
You will then be prompted to check for updates on startup. Respond “n” for the test. If you have a firewall like Windows OneCare you may be prompted to allow python.exe to access the Internet. Click “Allow this program”.
You can now access the guestbook application by going to your browser and entering:
Type something in the text box and click the button to try out the guest book application.
Troy


