Dear Wiki user,

You have subscribed to a wiki page or wiki category on "Gump Wiki" for change 
notification.

The following page has been changed by SebastianBazley:
http://wiki.apache.org/gump/GumpThree

The comment on the change is:
Add some missing pre-reqs

------------------------------------------------------------------------------
  You need at least:
  
   * [http://www.cygwin.com/ Cygwin]. Make sure to get at least the "base" and 
"development" packages sort-of completely; without the "which" and "hostname" 
commands you'll be in trouble for sure. Probably a good idea to add 
C:\cygwin\bin and C:\cygwin\sbin to your PATH, which you can do via right 
clicking "My Computer" > Properties > Advanced > Environment Variables > ...".
+  * Cygwin ssh (can be installed with setup)
   * [http://www.python.org/ Python]. You need version 2.4 or later. Make sure 
to add the location you installed it (usually C:\Python24) to your PATH 
*before* the cygwin paths, or otherwise make sure you don't install the cygwin 
versions of python.
   * [http://subversion.tigris.org/ Subversion client]. I recommend the latest 
stable version. The installer modifies your PATH for you.
   * [http://www.mysql.com/ MySQL]. I recommend the latest stable version.
+  * [http://sourceforge.net/projects/mysql-python MySQLdb Python library]
   * [http://java.sun.com/ Java]. I recommend the latest version in the 1.4.x 
series. Set JAVA_HOME to point to wherever you install it
  
  Fire up a command window. Do something like:
@@ -29, +31 @@

  rem ...this will show database errors...
  bash gump run
  rem so lets install a database
- cd gumpdb/src/sql
+ rem you can create a database using:
+ mysqldbadmin [-u root -p] create gump
- rem create a "gump" user with permissions to the "gump" database first, then
+ rem create a "gump" user with permissions to the "gump" database first
+ rem (e.g. using MySql Administrator), and then
- mysql -u root -p gump < gump3-database-definition.sql
+ mysql -u root -p gump < gumpdb/src/sql/gump3-database-definition.sql
  rem cross your fingers! It might work...
  bash gump run
  }}}

---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]

Reply via email to