Instructions for most Linux Systems using subversion:
cd $HOME
mkdir src
cd src
svn checkout http://svn.dabodev.com/dabo/trunk dabo
cd /usr/lib/python/site-packages
ln -s $HOME/src/dabo/dabo dabo
If i want to do a svn up:
cd $HOME/src/dabo; svn up
To get a specific revision, use:
cd $HOME/src/dabo; svn up -r revisionnumber
where revisionnumber is the numer of the revision you want to use.
For Gentoo users I have created a dabo ebuild and an ebuild for setuptools which is needed to install dabo. These ebuilds can be found on my home page http://www.electron.me.uk
Regards,
Geoff
For Ubuntu (and probably any apt based system) there's the getdabo.sh script (tested on Ubuntu 7.04 Feisty Fawn).
# getdabo.sh # gets dabo and dependencies, create site-packages symlink.# -e exit on error, -x print commands set -ex
sudo apt-get --yes install python-reportlab python-wxgtk2.8 subversion python-mysqldb
svn checkout http://svn.dabodev.com/dabo/trunk dabo cd dabo sudo python setup.py install
You may use the following script to run the DaboDemo application
# testdabo.sh # runs the DaboDemo ap set -ex cd dabodev/demo python DaboDemo.py