Setup Google App Engine 1.7.1 on Ubuntu 12.04
- 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 - 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 - Installing and starting the Google App Engine Launcher
sudo apt-get subversion
sudo apt-get install python-wxgladesvn 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
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