Skip to content

Generate Documentation

Sayam Kumar edited this page Jul 3, 2021 · 4 revisions

Build documentation locally

For v3

At pymc3 root -

$ git checkout v3
$ pip install -r requirements-dev.txt  # Make sure the dev requirements are installed
$ cd docs/source
$ git submodule init
$ git submodule update --remote  # To update pymc-examples submodule (optional step)
$ make html  # Build docs  
$ python -m http.server --directory _build/html  # Render docs

Now, go over to http://127.0.0.1:8000/ in web browser to view the generated docs.

TODO - Write steps for generating docs at main/v4