Web2py isn't installed, per se. The framework itself is a zip file that gets unzipped on your local machine. Then you use web2py's great wizards to create new applications, or create them manually within your project's applications directory.
gen-web2py-project.sh generates a new web2py project in your projects directory (defined by virtualenvwrapper's WORKON_HOME), the current directory, or a directory of your choice. Features
UseTo create a new web2py project named awesomeapp:./gen-web2py-project.sh awesomeappcd $WORKON_HOME/awesomeappgit init projectAnd to run web2py:
cd $WORKON_HOME/awesomeapp/project/srcpython2.5 web2py.py |