README.rst 508 Bytes
Newer Older
1
2
3
4
5
6
7
8
9
10
Documentation
=============

Documentation for LightGBM is generated using `Sphinx <http://www.sphinx-doc.org/>`__.

After each commit on ``master``, documentation is updated and published to `Read the Docs <https://lightgbm.readthedocs.io/>`__.

Build
-----

11
12
13
You can build the documentation locally. Just run in ``docs`` folder

for Python 3.x:
14
15
16
17
18

.. code:: sh

    pip install sphinx sphinx_rtd_theme
    make html
19
20
21
22
23
24
25
26

 
for Python 2.x:

.. code:: sh

    pip install mock sphinx sphinx_rtd_theme
    make html