Here are very basic steps to get up and running with the EveIGB code samples.

1. Install MS SQL Server 2008 Express
   * http://www.microsoft.com/express/Database/
   * Name your instance SQLSERVER
   * Default user should just be your logged-in user
   * Set db server to "SQL Server and Windows Authentication mode" in server properties
   * Add a user called eveigb who is a serveradmin (you should have better security in your app though)
2. Download the Eve Static Data Export archive and restore into SQL server
   http://www.eveonline.com/community/toolkit.asp
   * Restore through SQL server studio as eveigb, this will be your main database
   * Create tables by running eveigb.sql in sql server studio
3. Install Python 2.7 (32 bit)
   http://python.org/download/
4. Install pywin32 (32 bit)
   http://sourceforge.net/projects/pywin32/files/
5. Install pyOdbc for Python 2.7 (32 bit)
   http://code.google.com/p/pyodbc/
6. Install Web2Py for Windows (source, not exe)
   http://www.web2py.com/examples/default/download
7. Download and extract the eveigb folder to your web2py/applications folder
   http://content.eveonline.com/evesoftware/eveigb.zip
8. Change the db connection string in applications/eveigb/models/db.py:
   db = DAL('mssql://eveigb:mypassword@MYSERVERNAME\SQLSERVER/eveigb')
9. Run python.exe web2py.py

Your website is now available at http://localhost:8000/eveigb