How to build dgl

In Building and Testing,
I type in three ‘export’ and I do not know what to do next.
Should I just type in ‘python setup.py’ under ‘python’ directory?
I do not want install from resource, so I follow the recommended steps.
Thanks.

You will still need to build the C++ backend as in Install and Setup — DGL 0.6.1 documentation

mkdir build
cd build
cmake ..    # or cmake -DUSE_CUDA=ON .. for GPU builds
make -j4

This topic was automatically closed 30 days after the last reply. New replies are no longer allowed.