Installation of Read the Docs¶
Getting started with Read the Docs
- Install Sphinx (reference webpage)
- Create a directory inside your project to hold your docs
Run
sphinx-quickstartin the directoryThose things will be created
- Configuration file(
conf.py) - Initial .rst file (
index.rst) - Offline make files(
Makefile,make.bat) - Folders(
_build,_static,_templates, ...)
- Configuration file(
Test off-line build the document
- Run
make htmlin the directory - HTML document will be created in
docs/_build/html/
- Run