Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

How do you install Docutils from the Terminal so that Django admindocs will work?

Docutils is a great package. If you are using Django the admindocs package needs docutils. Instructions are available for installing with a web browser, but what if you are remote and logging in with a terminal over SSH? How to install in that case? What if you just want a quick recipe to do the job with the terminal?

like image 888
kd4ttc Avatar asked Jul 07 '12 17:07

kd4ttc


People also ask

How do I install Docutils?

Type "cmd" in the search bar and hit Enter to open the command line. What is this? Type “ pip install docutils ” (without quotes) in the command line and hit Enter again. This installs docutils for your default Python installation.

What is Docutils in Python?

Written in Python, for General- and Special-Purpose Use. Docutils is an open-source text processing system for processing plaintext documentation into useful formats, such as HTML, LaTeX, man-pages, OpenDocument, or XML.


1 Answers

Although it is an old thread, I want to share the answer I found. To install type command

sudo apt install python-docutils

or

sudo apt install python3-docutils

This will install the dependencies too. Yesterday, I installed docutils using this command for Geany editor and it is working fine.

like image 131
Sadaananth Anbucheliyan Avatar answered Sep 28 '22 17:09

Sadaananth Anbucheliyan