flybywire
flybywire

Reputation: 273582

How do I install python's sphinx documentation generator in linux?

And how do I run it?

Upvotes: 3

Views: 5242

Answers (3)

S.Lott
S.Lott

Reputation: 391852

How do I run it?

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

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

Upvotes: 1

Rudiger Wolf
Rudiger Wolf

Reputation: 1768

http://showmedo.com/videos/video?name=2910020&fromSeriesID=291

This demo shows how you can use sphinx to document your own program.

Upvotes: 1

myroslav
myroslav

Reputation: 3793

Sphinx website says:

easy_install -U Sphinx

If you want that installed in system python you'd probably need elevated permissions with sudo:

sudo easy_install -U Sphinx

If you do not have easy_install yet, see http://peak.telecommunity.com/DevCenter/EasyInstall

Upvotes: 6

Related Questions