This file is indexed.

/usr/share/doc/tryton-server-doc/html/_sources/topics/install.rst.txt is in tryton-server-doc 4.6.3-2.

This file is owned by root:root, with mode 0o644.

The actual contents of the file can be viewed below.

 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
54
55
56
57
58
59
.. _topics-install:

======================
How to install Tryton
======================

Prerequisites
=============

    * Python 2.7 or later (http://www.python.org/)
    * Werkzeug (http://werkzeug.pocoo.org/)
    * wrapt (https://github.com/GrahamDumpleton/wrapt)
    * lxml 2.0 or later (http://lxml.de/)
    * relatorio 0.7.0 or later (http://relatorio.tryton.org/)
    * Genshi (http://genshi.edgewall.org/)
    * python-dateutil (http://labix.org/python-dateutil)
    * polib (https://bitbucket.org/izi/polib/wiki/Home)
    * python-sql 0.4 or later (http://code.google.com/p/python-sql/)
    * Optional: psycopg 2.5.0 or later (http://www.initd.org/)
    * Optional: psycopg2cffi 2.5.0 or later
      (http://github.com/chtd/psycopg2cffi)
    * Optional: MySQL-python (http://sourceforge.net/projects/mysql-python/)
    * Optional: pydot (http://code.google.com/p/pydot/)
    * Optional: unoconv http://dag.wieers.com/home-made/unoconv/)
    * Optional: sphinx (http://sphinx.pocoo.org/)
    * Optional: cdecimal (http://www.bytereef.org/mpdecimal/index.html)
    * Optional: python-Levenshtein
      (http://github.com/miohtama/python-Levenshtein)
    * Optional: bcrypt (https://github.com/pyca/bcrypt)
    * Optional: html2text (https://pypi.python.org/pypi/html2text)
    * Optional: mock (http://www.voidspace.org.uk/python/mock/)

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://setuptools.readthedocs.io/en/latest/easy_install.html
          * 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.
..