Skip to content

Files

Latest commit

145f59a · Jul 17, 2020

History

History
 
 

docs

Building Documentation

Building locally:

Generate the docs

bash build.sh cppdocs pydocs

Once the process finishes, documentation can be found in build/html

xdg-open build/html/api.html`

Building via Docker

Pull or create the cuML docker container.

Start cuML container:

docker run -p 8000:8000 -it cuml bash

Setup container's conda env for building docs:

sudo sh setup.sh ${cuML-container-id}

Build & host docs from container:

sudo sh build.sh ${cuML-container-id}

Copy docs from container to host:

docker cp ${cuML-container-id}:/docs/build/html .