Differences between revisions 5 and 6
Revision 5 as of 2012-10-09 14:48:32
Size: 1724
Editor: mark
Comment:
Revision 6 as of 2012-10-09 14:51:02
Size: 1724
Editor: mark
Comment:
Deletions are marked like this. Additions are marked like this.
Line 7: Line 7:
{{{!#highlight bash {{{#!highlight bash
Line 19: Line 19:
{{{!#highlight bash {{{#!highlight bash
Line 30: Line 30:
{{{!#highlight bash {{{#!highlight bash

The ScrumPy Modelling Environment

Running ScrumPy

Once installed, ScrumPy is simply run from your favourite shell:

   1 mark@Mark:~/model/work/Tomato$ ScrumPy 

This will result in the appearance of this window.

ScreenShot1.png

The first text, in blue, is a greeting message from ScrumPy, followed by version information, the text in black serves a similar purpose giving information about the version of python you are using. Details will, of course vary between installations. The cursor (>>> indicates that ScrumPy is waiting for you type something.

You will also see a certain ammount of diagnostic text apear in your terminal, something like this:

   1 StartScrumPy !!!
   2 /usr/lib/python2.6/site-packages /usr/lib/python2.6/site-packages/ScrumPy/tkGUI/StartScrumPy.py
   3 importing parser
   4  MySQLdb module could not be loaded
   5 No module named MySQLdb
   6 importing parser

These are NOT error messages, as long as the window above appeared all is well. The output on the terminal falls into three categories, information, warnings and errors. Here the lines refering to the missing MySQLdb module are warning that a module required for some optional (and very obscure) feature was not found.

In the first instance all output on the terminal may be safely ignored, most of the time you can get rid of it entirely by invoking ScrumPy as

   1 mark@Mark:~/model/work/Tomato$ ScrumPy 2&>/dev/null 

There occaissions when output on the terminal is useful in diagnosing specific problems in models, but these will be mentioned in the relevant parts of the documentation.

None: ScrumPy/Doc/ModEnv (last edited 2012-11-23 16:43:29 by mark)