This file is indexed.

/usr/share/doc/pycassa-doc/html/_sources/installation.txt is in pycassa-doc 1.11.0-1.

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
.. _installing:

Installing
==========

Requirements
------------
You need to have either Python 2.6 or 2.7 installed.

Installing from PyPi
--------------------
If you have :file:`pip` installed, you can simply do:

.. code-block:: bash

  $ pip install pycassa

This will also install the Thrift python bindings automatically.

Manual Installation
-------------------
Make sure that you have Thrift's python bindings installed:

.. code-block:: bash

  $ pip install thrift

You can download a release from 
`github <http://github.com/pycassa/pycassa/downloads>`_
or check out the latest source from github::

  $ git clone git://github.com/pycassa/pycassa.git

You can simply copy the pycassa directory into your project, or
you can install pycassa system-wide:

.. code-block:: bash

  $ cd pycassa/
  $ sudo python setup.py install