Documentation Compilation
Before starting, you first need to install Sphinx, which is done very easily using easy_install or pip command in a command shell:
pip install sphinx --upgrade
In order to compile the documentation, under linux type:
make html
or:
make latex
and under windows, type:
make.bat html
This command will analyze the files in the source/ directory and create the HTML files into the directory _build/html/ or build/html depending on your configuration file.
There are many more possible outputs. Type make without argument to get help. For example, to build a PDF version, type:
make latexpdf