tree: 0014e70260bdd6d952f1c9d4b8d790c94304508a [path history] [tgz]
  1. source/
  2. make.bat
  3. Makefile
  4. readme.md
doc/readme.md

S2Graph Documentation

Dependencies

Python

Sphinx

Read the Docs Sphinx Theme

I used pip to install Python module. I used virtualenv to isolate the Python environment.

Depending on your environment, the tools(pip, virtualenv) may not be required

Quickstart

All work is done under the s2graph/doc folder.

cd doc

Creating a virtualenv environment for documnet build

If pip is not installed, you need to install it first by referring to the link: https://pip.pypa.io/en/stable/installing/

pip install virtualenv

virtualenv -p python s2graph_doc
source s2graph_doc/bin/activate

install sphinx and theme

pip install Sphinx
pip install sphinx_rtd_theme 

Building

make html

Viewing

pushd build/html && python -m SimpleHTTPServer 3000  

Screenshot