blob: b4a1d469d97e73286d2db21c2ca1354799750380 (
plain)
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
|
# Installation
## Requirements
Python version 2.6 at least, sqlite lib, event lib and the following python
packages: SQLAlchemy, gevent. For fancy text search you will also need to
install Xapian libraries and python packages (which IIRC are not
easy-installable...).
Ideally you should safely run the usual `python setup.py install` and get the
shit done, but first you must install all the C libraries with your distribution
package tools.
Debian/Ubuntu:
- libsqlite3-0
- libevent-1.4-2
- libxapian22
- python-xapian
Python packages installation:
# easy_install SQLAlchemy gevent
or
# pip install SQLAlchemy gevent
or
# aptitude install tuasorella
|