Wednesday, June 26, 2013

Google App Engine on Ubuntu The installation is used for Ubuntu 12.04

Setup Google App Engine 1.7.1 on Ubuntu 12.04

  1. Installation Python 2.7
    The Python 2.7 Interpreter installed by default. IDLE has to be installed by you, if you want to have it.
    sudo apt-get install idle
  2. Installing the Google App Engine
    cd
    mkdir google_gae
    cd google_gae
    wget -O gae.zip http://googleappengine.googlecode.com/files/google_appengine_1.7.4.zip
    unzip gae.zip
  3. Installing and starting the Google App Engine Launcher
    sudo apt-get subversion
    sudo apt-get install python-wxglade
    svn checkout http://google-appengine-wx-launcher.googlecode.com/svn/trunk/ google-appengine-wx-launcher-read-only
            cd google-appengine-wx-launcher-read-only
            sudo gedit ./GoogleAppEngineLauncher.py

           change:

            try:
               import wx

            into:

            try:
               import wxversion
               wxversion.select('2.8')
               import wx

  •     Starting the Google App Engine Launcher
                ./GoogleAppEngineLauncher.py
          


          

No comments:

Post a Comment