https://github.com/awslabs/dgl-lifesci
Raw File
Tip revision: 89e54463262b65631f34d9f5df82515a1238acdf authored by Mufei Li on 21 December 2022, 13:21:35 UTC
Update README.md
Tip revision: 89e5446
README.md
Documentation and Tutorials
===

Requirements
------------
* sphinx
* sphinx-gallery
* sphinx_rtd_theme

Build documents
---------------
First, clean up existing files:
```
./clean.sh
```

Then build:
```
make html
```

Render locally
--------------
```
cd build/html
python3 -m http.server 8000
```
back to top