| Author: | Benoit Delbosc |
|---|---|
| Address: | bdelbosc _at_ nuxeo.com |
| Revision: | INSTALL.txt 50852 2007-01-18 10:34:49Z madarche |
Abstract
This document describes how to install the BundleMan tool.
Should work on an any unices.
Get the latest package from the Python Cheese Shop
Extract the archive:
tar xzvf bundleman-X.Y.Z.tar.gz cd bundleman
Install bundleman either with:
sudo make install
or using the pythonic way:
python setup.py build sudo python setup.py install
You should run the unit tests to check that bundleman is working on your system with:
python setup.py test
It takes ~ 2 minutes.
Note that you can also use EasyInstall:
sudo easy_install bundleman
If you want to try the latest unstable sources from SVN
svn co https://svn.nuxeo.org/pub/tools/bundleman/trunk bundleman cd bundleman sudo make install
From the archive extraction:
sudo make uninstall