Please run the installation program. This will create a program folder called StoryLines (or other name if you have chosen a different name). This folder can be accessed via the Start menu under Programs. The folder contains shortcuts to the program, help file, and Uninstall program.
You can uninstall StoryLines either by double-clicking the Uninstall StoryLines icon in the StoryLines group, or by invoking the Windows Control Panel, double-clicking on Add/Remove Programs, and then choosing the StoryLines item.
On Linux:
Unarchive storylines-x.xx.tar.gz to a suitable location in your filesystem. A directory of the form storylines-x.xx (where x.xx is the version number) will be created.
Add the location to your PATH and run the application with 'storylines'. You may wish to set the environment variable STORYLINESDIR so that StoryLines can find its data files.
For example:
% cd ~ % tar xvfz storylines-1.01.tar.gz % export STORYLINESDIR=`pwd`/storylines-1.01 % export PATH=$PATH:$STORYLINESDIR % storylinesIf you don't want to change your PATH, you could place a script in a location already on your PATH, such as /usr/local/bin. For example:
#!/bin/sh # Invokes StoryLines export STORYLINESDIR=/home/mydir/storylines-1.01 $STORYLINESDIR/storylines $*