How to install python sphinx documentation generator on Linux?

And how to run it?

+3
source share
3 answers

Sphinx website says:

easy_install -U Sphinx

If you want this to be installed in system python, you'll probably need elevated permissions with sudo:

sudo easy_install -U Sphinx

If you haven't already easy_install, see http://peak.telecommunity.com/DevCenter/EasyInstall

+6
source

How to run it?

http://sphinx-doc.org/tutorial.html#running-the-build

Basically, the easiest way is to start with a team sphinx-quickstart.

+1
source

Source: https://habr.com/ru/post/1704121/


All Articles