README.rst 7.86 KB
Newer Older
Guolin Ke's avatar
Guolin Ke committed
1
2
3
LightGBM Python Package
=======================

4
|License| |Python Versions| |PyPI Version|
Guolin Ke's avatar
Guolin Ke committed
5

Guolin Ke's avatar
Guolin Ke committed
6
7
8
Installation
------------

Guolin Ke's avatar
Guolin Ke committed
9
10
11
Preparation
'''''''''''

12
`setuptools <https://pypi.org/project/setuptools>`_ is needed.
Guolin Ke's avatar
Guolin Ke committed
13

14
For macOS users, gcc with OpenMP support must be installed first. Refer to `Installation Guide <https://github.com/Microsoft/LightGBM/blob/master/docs/Installation-Guide.rst#macos>`__ for installing gcc with OpenMP support.
Guolin Ke's avatar
Guolin Ke committed
15

16
Note: 32-bit Python is not supported. Please install 64-bit version.
Guolin Ke's avatar
Guolin Ke committed
17

18
Install from `PyPI <https://pypi.org/project/lightgbm>`_ Using ``pip``
19
''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''
20

21
For Windows users, `VC runtime <https://go.microsoft.com/fwlink/?LinkId=746572>`_ is needed if Visual Studio (2015 or 2017) is not installed.
Guolin Ke's avatar
Guolin Ke committed
22

23
24
For macOS users, latest versions of LightGBM are built with **g++-8** and cannot be launched on systems with **g++-7** and earlier. You should update your **g++** compiler if you don't want to build from sources or install LightGBM 2.1.1 which is the last version built with **g++-7**.

25
Install `wheel <http://pythonwheels.com>`_ via ``pip install wheel`` first. After that download the wheel file and install from it:
Guolin Ke's avatar
Guolin Ke committed
26

27
.. code:: sh
Guolin Ke's avatar
Guolin Ke committed
28

29
    pip install lightgbm
Guolin Ke's avatar
Guolin Ke committed
30

31
Build from Sources
32
******************
Guolin Ke's avatar
Guolin Ke committed
33

34
.. code:: sh
Guolin Ke's avatar
Guolin Ke committed
35

36
    pip install --no-binary :all: lightgbm
Guolin Ke's avatar
Guolin Ke committed
37

38
For Linux and macOS users, installation from sources requires installed `CMake <https://cmake.org/>`_.
Guolin Ke's avatar
Guolin Ke committed
39

40
For macOS users, you need to specify compilers by runnig ``export CXX=g++-7 CC=gcc-7`` (replace 7 with version of gcc installed on your machine) first.
Guolin Ke's avatar
Guolin Ke committed
41

Nikita Titov's avatar
Nikita Titov committed
42
For Windows users, Visual Studio (or `MS Build <https://www.visualstudio.com/downloads/>`_) is needed. If you get any errors during installation, you may need to install `CMake <https://cmake.org/>`_ (version 3.8 or higher).
Guolin Ke's avatar
Guolin Ke committed
43

44
45
46
47
48
49
50
51
52
53
54
Build MPI Version
~~~~~~~~~~~~~~~~~

.. code:: sh

    pip install lightgbm --install-option=--mpi

For Windows users, compilation with MinGW-w64 is not supported and `CMake <https://cmake.org/>`_ (version 3.8 or higher) is strongly required in this case.

Note: MPI libraries are needed: details for installation can be found in `Installation Guide <https://github.com/Microsoft/LightGBM/blob/master/docs/Installation-Guide.rst#build-mpi-version>`__.

55
Build GPU Version
56
~~~~~~~~~~~~~~~~~
Guolin Ke's avatar
Guolin Ke committed
57

58
.. code:: sh
59

60
    pip install lightgbm --install-option=--gpu
61

62
For Windows users, `CMake <https://cmake.org/>`_ (version 3.8 or higher) is strongly required in this case.
63

64
Note: Boost and OpenCL are needed: details for installation can be found in `Installation Guide <https://github.com/Microsoft/LightGBM/blob/master/docs/Installation-Guide.rst#build-gpu-version>`__. You need to add ``OpenCL_INCLUDE_DIR`` to the environmental variable **'PATH'** and export ``BOOST_ROOT`` before installation.
65

66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
Also you may pass options to CMake via pip options, like

.. code:: sh

    pip install lightgbm --install-option=--gpu --install-option="--opencl-include-dir=/usr/local/cuda/include/" --install-option="--opencl-library=/usr/local/cuda/lib64/libOpenCL.so"

All available options:

- boost-root

- boost-dir

- boost-include-dir

- boost-librarydir

- opencl-include-dir

- opencl-library

For more details see `FindBoost <https://cmake.org/cmake/help/v3.8/module/FindBoost.html>`__ and `FindOpenCL <https://cmake.org/cmake/help/v3.8/module/FindOpenCL.html>`__.

88
89
90
91
92
93
94
95
96
Build HDFS Version
~~~~~~~~~~~~~~~~~~

.. code:: sh

    pip install lightgbm --install-option=--hdfs

For Windows users, `CMake <https://cmake.org/>`_ (version 3.8 or higher) is strongly required in this case.

97
98
99
100
101
102
103
104
Build with MinGW-w64 on Windows
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~

.. code:: sh

    pip install lightgbm --install-option=--mingw

Note: `CMake <https://cmake.org/>`_ and `MinGW-w64 <https://mingw-w64.org/>`_ should be installed first.
Guolin Ke's avatar
Guolin Ke committed
105

Guolin Ke's avatar
Guolin Ke committed
106
107
Install from GitHub
'''''''''''''''''''
Guolin Ke's avatar
Guolin Ke committed
108

109
For Linux and macOS users, installation from GitHub requires installed `CMake <https://cmake.org/>`_.
Guolin Ke's avatar
Guolin Ke committed
110

Nikita Titov's avatar
Nikita Titov committed
111
For Windows users, Visual Studio (or `MS Build <https://www.visualstudio.com/downloads/>`_) is needed. If you get any errors during installation and there is the warning ``WARNING:LightGBM:Compilation with MSBuild from existing solution file failed.`` in the log, you should install `CMake <https://cmake.org/>`_ (version 3.8 or higher).
Guolin Ke's avatar
Guolin Ke committed
112

Guolin Ke's avatar
Guolin Ke committed
113
114
.. code:: sh

115
    git clone --recursive https://github.com/Microsoft/LightGBM.git
Guolin Ke's avatar
Guolin Ke committed
116
    cd LightGBM/python-package
117
    # export CXX=g++-7 CC=gcc-7  # for macOS users only (replace 7 with version of gcc installed on your machine)
Guolin Ke's avatar
Guolin Ke committed
118
119
    python setup.py install

120
Note: ``sudo`` (or administrator rights in Windows) may be needed to perform the command.
Guolin Ke's avatar
Guolin Ke committed
121

122
123
Run ``python setup.py install --mpi`` to enable MPI support. For Windows users, compilation with MinGW-w64 is not supported and `CMake <https://cmake.org/>`_ (version 3.8 or higher) is strongly required in this case. MPI libraries are needed: details for installation can be found in `Installation Guide <https://github.com/Microsoft/LightGBM/blob/master/docs/Installation-Guide.rst#build-mpi-version>`__.

124
Run ``python setup.py install --mingw`` if you want to use MinGW-w64 on Windows instead of Visual Studio. `CMake <https://cmake.org/>`_ and `MinGW-w64 <https://mingw-w64.org/>`_ should be installed first.
Guolin Ke's avatar
Guolin Ke committed
125

126
Run ``python setup.py install --gpu`` to enable GPU support. For Windows users, `CMake <https://cmake.org/>`_ (version 3.8 or higher) is strongly required in this case. Boost and OpenCL are needed: details for installation can be found in `Installation Guide <https://github.com/Microsoft/LightGBM/blob/master/docs/Installation-Guide.rst#build-gpu-version>`__. You can pass additional options to CMake: ``python setup.py install --gpu --opencl-include-dir=/usr/local/cuda/include/``, see `Build GPU Version <#build-gpu-version>`__ for complete list of them.
127

128
129
Run ``python setup.py install --hdfs`` to enable HDFS support. For Windows users, `CMake <https://cmake.org/>`_ (version 3.8 or higher) is strongly required in this case.

130
If you get any errors during installation or due to any other reason, you may want to build dynamic library from sources by any method you prefer (see `Installation Guide <https://github.com/Microsoft/LightGBM/blob/master/docs/Installation-Guide.rst>`__) and then run ``python setup.py install --precompile``.
Guolin Ke's avatar
Guolin Ke committed
131
132
133
134

Examples
--------

135
Refer to the walk through examples in `Python guide folder <https://github.com/Microsoft/LightGBM/tree/master/examples/python-guide>`_.
wxchan's avatar
wxchan committed
136
137

Troubleshooting
Guolin Ke's avatar
Guolin Ke committed
138
---------------
wxchan's avatar
wxchan committed
139

140
141
In case you are facing any errors during the installation process, you can examine ``$HOME/LightGBM_compilation.log`` file, in which all operations are logged, to get more details about occurred problem. Also, please attach this file to the issue on GitHub to help faster indicate the cause of the error.

142
Refer to `FAQ <https://github.com/Microsoft/LightGBM/tree/master/docs/FAQ.rst>`_.
wxchan's avatar
wxchan committed
143
144

Developments
Guolin Ke's avatar
Guolin Ke committed
145
------------
wxchan's avatar
wxchan committed
146

147
The code style of Python-package follows `PEP 8 <https://www.python.org/dev/peps/pep-0008/>`_. If you would like to make a contribution and not familiar with PEP 8, please check the PEP 8 style guide first. Otherwise, the check won't pass. You should be careful about:
wxchan's avatar
wxchan committed
148

149
- E1 Indentation (check PEP 8 link above)
wxchan's avatar
wxchan committed
150
151
152
153
154
155
156
- E202 whitespace before and after brackets
- E225 missing whitespace around operator
- E226 missing whitespace around arithmetic operator
- E261 at least two spaces before inline comment
- E301 expected 1 blank line in front of and at the end of a method
- E302 expected 2 blank lines in front of and at the end of a function or a class

157
E501 (line too long) and W503 (line break occurred before a binary operator) can be ignored.
Guolin Ke's avatar
Guolin Ke committed
158

159
160
161
.. |License| image:: https://img.shields.io/badge/license-MIT-blue.svg
   :target: https://github.com/Microsoft/LightGBM/blob/master/LICENSE
.. |Python Versions| image:: https://img.shields.io/pypi/pyversions/lightgbm.svg
162
   :target: https://pypi.org/project/lightgbm
163
.. |PyPI Version| image:: https://img.shields.io/pypi/v/lightgbm.svg
164
   :target: https://pypi.org/project/lightgbm