-
Notifications
You must be signed in to change notification settings - Fork 0
/
INSTALL
62 lines (36 loc) · 1.25 KB
/
INSTALL
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
========
Installation
========
coop uses distribute for installation therefore it may be installed
using:
* from source on the command-line or
* from pypi using pip or easy_install.
From source
-----------
1) Download the source distribution of coop.
2) Unzip the distribution into a directory.
3) cd into that directory and type the following command (assuming python
is in your path (on Linux systems root access may be required)
.. code-block:: sh
> python setup.py install
4) coop should now be available inside you system python as
.. code-block:: py
>>> import coop
From pypi
---------
1) type the following command (assuming pip
is in your path (on Linux systems root access may be required)
.. code-block:: sh
> pip install coop
4) coop should now be available inside you system python as
.. code-block:: py
>>> import coop
Documentation
-------------
coop uses sphinx for its documentation. Please install spinx either
via pip or easy_install or from your package mangement system.
To use sphinx to build the documentation
from source use the following command from the root directory of the project
.. code-block:: sh
> python setup.py build_sphinx
The resulting html files will be in docs/build/html