This document outlines the setup of the sphinx and transifex client for
building and translating the user_documentation
.
Currently only Linux in general and Ubuntu in particular are covered. More to come, watch this space.
Install python virtualenv
$ sudo apt install virtualenv # on Ubuntu
Create a virtualenv and install the sphinx dependencies
$ cd workdir
$ virtualenv sphinx
$ sphinx/bin/pip install sphinx sphinx-intl[transifex] sphinx_rtd_theme
Set the path to the virtualenv bin directory
export PATH=$(pwd)/sphinx/bin:${PATH}