1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53
|
.. _topics-install:
======================
How to install Tryton
======================
Prerequisites
=============
* Python 2.7 or later (http://www.python.org/)
* lxml 2.0 or later (http://lxml.de/)
* relatorio 0.2.0 or later (http://code.google.com/p/python-relatorio/)
* python-dateutil (http://labix.org/python-dateutil)
* polib (https://bitbucket.org/izi/polib/wiki/Home)
* python-sql 0.2 or later (http://code.google.com/p/python-sql/)
* Optional: psycopg 2 or later (http://www.initd.org/)
* Optional: MySQL-python (http://sourceforge.net/projects/mysql-python/)
* Optional: pywebdav 0.9.8 or later (http://code.google.com/p/pywebdav/)
* Optional: pydot (http://code.google.com/p/pydot/)
* Optional: unoconv http://dag.wieers.com/home-made/unoconv/)
* Optional: sphinx (http://sphinx.pocoo.org/)
* Optional: simplejson (http://undefined.org/python/#simplejson)
* Optional: cdecimal (http://www.bytereef.org/mpdecimal/index.html)
* Optional: python-Levenshtein
(http://github.com/miohtama/python-Levenshtein)
Install Tryton
==============
There are three easy options to install Tryton:
* Install the version provided by your operating system distribution. This
is the quickest and recommended option for those who has operating system
that distributes Tryton.
* Install an official release. Once you've downloaded and unpacked a
trytond source release, enter the directory where the archive was
unpacked, and run: ``python setup.py install``
For advanced options, please refer to the easy_install and/or the
distutils documentation:
* http://peak.telecommunity.com/DevCenter/EasyInstall
* http://docs.python.org/inst/inst.html
* Without installation, just run ``bin/trytond`` from where the archive was
unpacked.
.. warning::
Note that you may need administrator/root privileges for this step, as
this command will by default attempt to install trytond to the Python
site-packages directory on your system.
..
|