Left: | ||
Right: |
OLD | NEW |
---|---|
(Empty) | |
1 .. _topics-install: | |
2 | |
3 ====================== | |
4 Howt to install Tryton | |
5 ====================== | |
6 | |
7 Prerequisites | |
8 ------------- | |
9 | |
10 * Python 2.4 or later (http://www.python.org/) | |
11 * lxml 2.0 or later (http://codespeak.net/lxml/) | |
12 * relatorio 0.2.0 or later (http://relatorio.openhex.org/) | |
13 * python-dateutil (http://labix.org/python-dateutil) | |
14 * simplejson (http://undefined.org/python/#simplejson) | |
15 * Optional: psycopg 2 or later (http://www.initd.org/) | |
16 * Optional: MySQL-python (http://sourceforge.net/projects/mysql-python/) | |
17 * Optional: pywebdav 0.9.3 or later (http://code.google.com/p/pywebdav/) | |
18 * Optional: pydot (http://code.google.com/p/pydot/) | |
19 * Optional: pytz (http://pytz.sourceforge.net/) | |
20 * Optional: openoffice-python (http://pypi.python.org/pypi/openoffice-python /) | |
21 * Optional: sphinx (http://sphinx.pocoo.org/) | |
22 | |
23 Install Tryton | |
24 -------------- | |
25 | |
26 You've got three easy options to install Tryton: | |
27 | |
28 * Install the version provided by your operating system distribution. This | |
29 is the quickest and recommended option for those who has operating system | |
yangoon1
2010/04/11 11:28:32
still wrong
ced
2010/04/14 05:46:10
I don't see what is wrong.
yangoon1
2010/04/14 10:03:33
'for those who have an operating system' would be
| |
30 that distributes Tryton. | |
31 | |
32 * Install an official release. Once you've downloaded and unpacked a | |
33 trytond source release, enter the directory where the archive was | |
34 unpacked, and run: ``python setup.py install`` | |
35 | |
36 For advanced options, please refer to the easy_install and/or the | |
37 distutils documentation: | |
38 | |
39 * http://peak.telecommunity.com/DevCenter/EasyInstall | |
40 * http://docs.python.org/inst/inst.html | |
41 | |
42 * Without installation, just run ``bin/trytond`` from where the archive was | |
43 unpacked. | |
44 | |
45 .. warning:: | |
46 Note that you may need administrator/root privileges for this step, as | |
47 this command will by default attempt to install trytond to the Python | |
48 site-packages directory on your system. | |
49 .. | |
OLD | NEW |