Skip to content

Latest commit

 

History

History
31 lines (21 loc) · 657 Bytes

SETUP.md

File metadata and controls

31 lines (21 loc) · 657 Bytes

Setup the sphinx / RtD environment

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.

Linux

Via Python virtualenv

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}