Installing Google App Engine SDK on Ubuntu or any linux distribution.
Get App Engine Python SDK:
Download Linux version of "Google App Engine SDK for Python".Install the SDK:
Lets install the SDK to opt directory.Source code viewer
# Go to your downloads directory. cd /home/$USER/Downloads/ # You might need to change the version of App Engine Python SDK. unzip google_appengine_1.4.0.zip # Lets move unziped files to /opt. sudo mv /home/$USER/Downloads/google_appengine /opt/google/appengineProgramming Language: Bash
Running App Engine:
Running a project locally:Source code viewer
export PATH=$PATH:/opt/google/appengine/ dev_appserver.py /path/to/your/application/Programming Language: Bash
Uploading a Project:
Source code viewer
export PATH=$PATH:/opt/google/appengine/ appcfg.py update /path/to/your/application/Programming Language: Bash