Go into directory $HAIZEA_INST and un-tar the installation package:
tar xvzf haizea-XXX.tar.gz
This will create a directory called haizea-XXX in $HAIZEA_INST. Go into that directory, and as root, run the following:
python setup.py install
If you do not have root access, or want to install Haizea in your home directory, run the following:
python setup.py install --home=$HOME
Note: If you have never installed a Python package in your home directory before, make sure you set the environment variable PYTHONPATH appropriately so Python will be aware of the Haizea modules.
export PYTHONPATH=$HOME/lib/python
After running the setup script, you should see a long list of installation and build messages, ending with the following:
creating /usr/share/haizea/traces/multi copying traces/multi/inj1.lwf -> /usr/share/haizea/traces/multi copying traces/multi/inj2.lwf -> /usr/share/haizea/traces/multi copying traces/multi/withprematureend.lwf -> /usr/share/haizea/traces/multi copying traces/multi/withoutprematureend.lwf -> /usr/share/haizea/traces/multi running install_egg_info Writing /usr/lib/python2.5/site-packages/haizea-XXX.egg-info
If you see this, installation has been successful!
Borja Sotomayor 2009-12-17