boodebr sandbox App Engine samples and tutorials from boodebr.org


Recently Edited
InstallCherryPy edit
frank, 05 July 2008 (created 05 July 2008)
  • Download CherryPy (you need at least version 3.1.0)
  • Unpack into your application folder, for example:
    cd c:/frank/src/gapp_boodebr
    tar zxvf ~/CherryPy-3.1.0.tar.gz
  • Use the --prefix option to install to application folder (not system wide):
    cd CherryPy-3.1.0
    python setup.py install --prefix="c:\frank\src\gapp_boodebr"
  • This doesn't place it exactly where I need it, so move it to the toplevel:
    mv ../Lib/site-packages/cherrypy/ ..
  • And cleanup
    cd ..
    rm -rf CherryPy-3.1.0