-
Notifications
You must be signed in to change notification settings - Fork 1
/
INSTALL
72 lines (44 loc) · 1.94 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
60
61
62
63
64
65
66
67
68
69
70
71
72
========================================================================
**peacock** Installation Instructions
========================================================================
This section contains information about
how to download and install **peacock ** in your system.
It also contains brief instructions about how
to build the included documentation.
Requirements
============
Detailed information about the minimum supported Django version and
other Python modules that may be required in order to run this software is shown below:
.. literalinclude:: ../requirements.txt
This information exists in the ``requirements.txt`` file
inside the ** peacock ** distribution package.
If ``pip`` is used to install this software,
then all these dependencies will also be installed,
if they are not already installed in your system.
Soruce
========
Got to Bitubucket.org.
URL is https://bitbucket.org/hdknr/peacock
Install
=======
To install **peacock** from soruce code, use the provided installation script::
python setup.py install
Or it is also possible to install this application directly from
the `source code repository`_ using ``pip``::
pip install -e hg+https://bitbucket.org/hdknr/peacock
The above command will install the latest development release of **peacock**.
How to build the documentation
==============================
This project's documentation is located in source form under the ``docs``
directory. In order to convert the documentation to a format that is
easy to read and navigate you need the ``sphinx`` package.
You can install ``sphinx`` using ``pip``::
pip install sphinx
Or ``easy_install``::
easy_install sphinx
Once ``sphinx`` is installed, change to the ``docs`` directory, open a shell
and run the following command::
make html
This will build a HTML version of the documentation. You can read the
documentation by opening the following file in any web browser::
docs/_build/html/index.html