@@ -24,26 +24,31 @@ Documentation:
24
24
http://zs.readthedocs.org/
25
25
26
26
Installation:
27
- Because ``zs `` includes a C extension, you'll need a C compiler to
28
- install it. You'll also need either Python 2.7, or else Python 3.3
29
- or greater.
27
+ You need either Python **2.7 **, or else Python **3.3 or greater **.
30
28
31
- Assuming you have a C compiler available, installation in Python 3
32
- should be as simple as::
29
+ Because ``zs `` includes a C extension, you'll also need a C compiler
30
+ and Python headers. On Ubuntu or Debian, for example, you get these
31
+ with::
32
+
33
+ sudo apt-get install build-essential python-dev
34
+
35
+ Once you have the ability to build C extensions, then on Python
36
+ 3 you should be able to just run::
33
37
34
38
pip install zs
35
39
36
- On Python 2.7, ``zs `` also requires the ``backports.lzma `` package,
37
- which in turn requires the liblzma library. On Ubuntu or Debian, for
38
- example, something like this should work::
40
+ On Python 2.7, things are slightly more complicated: here, ``zs ``
41
+ requires the ``backports.lzma `` package, which in turn requires the
42
+ liblzma library. On Ubuntu or Debian, for example, something like
43
+ this should work::
39
44
40
45
sudo apt-get install liblzma-dev
41
46
pip install backports.lzma
42
47
pip install zs
43
48
44
49
``zs `` also requires the following packages: ``six ``, ``docopt ``,
45
50
``requests ``. However, these are all pure-Python packages which pip
46
- will install for you automatically.
51
+ will install for you automatically when you run `` pip install zs `` .
47
52
48
53
Downloads:
49
54
http://pypi.python.org/pypi/zs/
0 commit comments