1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20
|
How to install twyt
-----------------------
o Dependencies
- python >= 2.5 (perhaps earlier, haven't tested yet)
- simplejson
o Intro
twyt uses distutils for its standard installation procedure so the setup.py
script provides installation routines. Note that it doesn't provide
uninstallation routines. If you require uninstallation and upgrade handling,
that's what package managers are for. Consider using one.
o Installation
To install twyt to the default place on your system, run as root:
./setup.py install
If you wish to install it to a different root or prefix (e.g.
--prefix=/usr/local) see ./setup.py install --help for options.
|