index.rst 6.02 KB
Newer Older
1
2
Install and Setup
=================
Minjie Wang's avatar
Minjie Wang committed
3

Gan Quan's avatar
Gan Quan committed
4
5
System requirements
-------------------
6
DGL works with the following operating systems:
Gan Quan's avatar
Gan Quan committed
7
8
9

* Ubuntu 16.04
* macOS X
10
* Windows 10
Gan Quan's avatar
Gan Quan committed
11

12
DGL requires Python version 3.6, 3.7, 3.8 or 3.9.
Gan Quan's avatar
Gan Quan committed
13

14
DGL supports multiple tensor libraries as backends, e.g., PyTorch, MXNet. For requirements on backends and how to select one, see :ref:`backends`.
Gan Quan's avatar
Gan Quan committed
15

16
17
18
Starting at version 0.3, DGL is separated into CPU and CUDA builds.  The builds share the
same Python package name. If you install DGL with a CUDA 9 build after you install the
CPU build, then the CPU build is overwritten.
19

Minjie Wang's avatar
Minjie Wang committed
20
21
Install from Conda or Pip
-------------------------
22

23
24
We recommend installing DGL by ``conda`` or ``pip``.
Check out the instructions on the `Get Started page <https://www.dgl.ai/pages/start.html>`_.
Gan Quan's avatar
Gan Quan committed
25

26
27
.. _install-from-source:

Gan Quan's avatar
Gan Quan committed
28
29
Install from source
-------------------
30
Download the source files from GitHub.
Gan Quan's avatar
Gan Quan committed
31
32

.. code:: bash
Minjie Wang's avatar
Minjie Wang committed
33

34
   git clone --recurse-submodules https://github.com/dmlc/dgl.git
Minjie Wang's avatar
Minjie Wang committed
35

36
(Optional) Clone the repository first, and then run the following:
Minjie Wang's avatar
Minjie Wang committed
37
38
39

.. code:: bash

40
   git submodule update --init --recursive
Gan Quan's avatar
Gan Quan committed
41
42
43

Linux
`````
Minjie Wang's avatar
Minjie Wang committed
44

45
Install the system packages for building the shared library. For Debian and Ubuntu
Gan Quan's avatar
Gan Quan committed
46
users, run:
Minjie Wang's avatar
Minjie Wang committed
47
48
49

.. code:: bash

Gan Quan's avatar
Gan Quan committed
50
   sudo apt-get update
Da Zheng's avatar
Da Zheng committed
51
   sudo apt-get install -y build-essential python3-dev make cmake
Minjie Wang's avatar
Minjie Wang committed
52

Gan Quan's avatar
Gan Quan committed
53
For Fedora/RHEL/CentOS users, run:
Minjie Wang's avatar
Minjie Wang committed
54

Gan Quan's avatar
Gan Quan committed
55
56
57
.. code:: bash

   sudo yum install -y gcc-c++ python3-devel make cmake
Minjie Wang's avatar
Minjie Wang committed
58

59
60
61
Build the shared library. Use the configuration template ``cmake/config.cmake``.
Copy it to either the project directory or the build directory and change the
configuration as you wish. For example, change ``USE_CUDA`` to ``ON`` will
62
enable a CUDA build. You could also pass ``-DKEY=VALUE`` to the cmake command
63
64
for the same purpose.

65
66
67
68
69
70
* CPU-only build::

     mkdir build
     cd build
     cmake ..
     make -j4
71

72
* CUDA build::
73

74
75
76
77
     mkdir build
     cd build
     cmake -DUSE_CUDA=ON ..
     make -j4
78
79

Finally, install the Python binding.
Minjie Wang's avatar
Minjie Wang committed
80
81
82

.. code:: bash

Gan Quan's avatar
Gan Quan committed
83
84
85
86
87
88
   cd ../python
   python setup.py install

macOS
`````

89
Installation on macOS is similar to Linux. But macOS users need to install build tools like clang, GNU Make, and cmake first. These installation steps were tested on macOS X with clang 10.0.0, GNU Make 3.81, and cmake 3.13.1.
Minjie Wang's avatar
Minjie Wang committed
90

Gan Quan's avatar
Gan Quan committed
91
Tools like clang and GNU Make are packaged in **Command Line Tools** for macOS. To
92
install, run the following:
Minjie Wang's avatar
Minjie Wang committed
93
94
95

.. code:: bash

Gan Quan's avatar
Gan Quan committed
96
   xcode-select --install
Minjie Wang's avatar
Minjie Wang committed
97

Gan Quan's avatar
Gan Quan committed
98
To install other needed packages like cmake, we recommend first installing
99
**Homebrew**, which is a popular package manager for macOS. To learn more, see the `Homebrew website <https://brew.sh/>`_.
Gan Quan's avatar
Gan Quan committed
100

101
After you install Homebrew, install cmake.
Minjie Wang's avatar
Minjie Wang committed
102
103
104

.. code:: bash

Gan Quan's avatar
Gan Quan committed
105
   brew install cmake
Minjie Wang's avatar
Minjie Wang committed
106

107
108
Go to root directory of the DGL repository, build a shared library, and
install the Python binding for DGL.
Gan Quan's avatar
Gan Quan committed
109
110

.. code:: bash
Minjie Wang's avatar
Minjie Wang committed
111

Gan Quan's avatar
Gan Quan committed
112
113
   mkdir build
   cd build
114
   cmake -DUSE_OPENMP=off -DCMAKE_C_FLAGS='-DXBYAK_DONT_USE_MAP_JIT' -DCMAKE_CXX_FLAGS='-DXBYAK_DONT_USE_MAP_JIT' ..
Gan Quan's avatar
Gan Quan committed
115
116
117
   make -j4
   cd ../python
   python setup.py install
Minjie Wang's avatar
Minjie Wang committed
118

Gan Quan's avatar
Gan Quan committed
119
120
Windows
```````
Minjie Wang's avatar
Minjie Wang committed
121

122
123
124
You can build DGL with MSBuild.  With `MS Build Tools <https://go.microsoft.com/fwlink/?linkid=840931>`_
and `CMake on Windows <https://cmake.org/download/>`_ installed, run the following
in VS2019 x64 Native tools command prompt.
Gan Quan's avatar
Gan Quan committed
125

126
* CPU only build::
Gan Quan's avatar
Gan Quan committed
127

128
129
130
131
132
133
     MD build
     CD build
     cmake -DCMAKE_CXX_FLAGS="/DDGL_EXPORTS" -DCMAKE_CONFIGURATION_TYPES="Release" -DDMLC_FORCE_SHARED_CRT=ON .. -G "Visual Studio 16 2019"
     msbuild dgl.sln /m
     CD ..\python
     python setup.py install
134
135

* CUDA build::
Quan (Andy) Gan's avatar
Quan (Andy) Gan committed
136

137
138
139
140
141
142
     MD build
     CD build
     cmake -DCMAKE_CXX_FLAGS="/DDGL_EXPORTS" -DCMAKE_CONFIGURATION_TYPES="Release" -DDMLC_FORCE_SHARED_CRT=ON -DUSE_CUDA=ON .. -G "Visual Studio 16 2019"
     msbuild dgl.sln /m
     CD ..\python
     python setup.py install
Quan (Andy) Gan's avatar
Quan (Andy) Gan committed
143

144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
Compilation Flags
`````````````````

See `config.cmake <https://github.com/dmlc/dgl/blob/master/cmake/config.cmake>`_.


.. _backends:

Working with different backends
-------------------------------

DGL supports PyTorch, MXNet and Tensorflow backends. 
DGL will choose the backend on the following options (high priority to low priority)

* Use the ``DGLBACKEND`` environment variable:

   - You can use ``DGLBACKEND=[BACKEND] python gcn.py ...`` to specify the backend
   - Or ``export DGLBACKEND=[BACKEND]`` to set the global environment variable 

* Modify the ``config.json`` file under "~/.dgl":

   - You can use ``python -m dgl.backend.set_default_backend [BACKEND]`` to set the default backend

Currently BACKEND can be chosen from mxnet, pytorch, tensorflow.

PyTorch backend
```````````````

Export ``DGLBACKEND`` as ``pytorch`` to specify PyTorch backend. The required PyTorch
version is 1.5.0 or later. See `pytorch.org <https://pytorch.org>`_ for installation instructions.

MXNet backend
`````````````

Export ``DGLBACKEND`` as ``mxnet`` to specify MXNet backend. The required MXNet version is
1.5 or later. See `mxnet.apache.org <https://mxnet.apache.org/get_started>`_ for installation
instructions.

MXNet uses uint32 as the default data type for integer tensors, which only supports graph of
size smaller than 2^32. To enable large graph training, *build* MXNet with ``USE_INT64_TENSOR_SIZE=1``
flag. See `this FAQ <https://mxnet.apache.org/api/faq/large_tensor_support>`_ for more information.

MXNet 1.5 and later has an option to enable Numpy shape mode for ``NDArray`` objects, some DGL models
need this mode to be enabled to run correctly. However, this mode may not compatible with pretrained
model parameters with this mode disabled, e.g. pretrained models from GluonCV and GluonNLP.
By setting ``DGL_MXNET_SET_NP_SHAPE``, users can switch this mode on or off.

Tensorflow backend
``````````````````

Export ``DGLBACKEND`` as ``tensorflow`` to specify Tensorflow backend. The required Tensorflow
version is 2.2.0 or later. See `tensorflow.org <https://www.tensorflow.org/install>`_ for installation
instructions. In addition, DGL will set ``TF_FORCE_GPU_ALLOW_GROWTH`` to ``true`` to prevent Tensorflow take over the whole GPU memory:

.. code:: bash

   pip install "tensorflow>=2.2.0"  # when using tensorflow cpu version
Quan (Andy) Gan's avatar
Quan (Andy) Gan committed
201