Run in a terminal from this directory::

  make html

Also useful::

  make clean
  make cleanall

Dependencies to build the documentation:

- sphinx
- numpydoc

Build the doc nearly as in readthedocs with conda
-------------------------------------------------

```bash

source ~/opt/miniconda3/bin/activate

cd ~/Dev/fluidimage

conda env create --name latest --file environment.yml
conda install --yes --name latest sphinx==1.3.5 Pygments==2.2.0 docutils==0.12 mock pillow==3.0.0 sphinx_rtd_theme==0.1.7

source activate latest

pip install -U mkdocs==0.15.0 git+https://github.com/rtfd/readthedocs-sphinx-ext.git@0.6-alpha#egg=readthedocs-sphinx-ext commonmark==0.5.4 recommonmark==0.1.1

python setup.py install --force


cd doc
python -m sphinx -T -E -b html -d _build/doctrees-readthedocs -D language=en . _build/html

```
