python (65.1k questions)
javascript (44.2k questions)
reactjs (22.7k questions)
java (20.8k questions)
c# (17.4k questions)
html (16.3k questions)
r (13.7k questions)
android (12.9k questions)
docutils ERROR: Could not install packages due to an OSError: [Errno 2] No such file or directory
when I run pip show I get
FileNotFoundError: [Errno 2] No such file or directory: '/[my_home] /.local/lib/python3.8/site-packages/docutils-0.16.dist-info/METADATA'
and when I try to install docutils
E...
jjrr
Votes: 0
Answers: 1
Sphinx can't generate link text as literal
With Markdown, I can simply:
[`a link with monospace font`](https://www.example.com)
a link with monospace font
Note how the above line is properly rendered by SO's MD renderer: the link text is in c...
Leonardo
Votes: 0
Answers: 0
How to create an custom sphinx extention that works in latex
I created a super small extention to add the role "icon" in my doc. The idea is to write down the following :
I'm a folder :icon:`fa fa-folder`
I adapted some code find online and came up w...
Pierrick Rambaud
Votes: 0
Answers: 1
Getting "Extension error (sphinx.environment.collectors.toctree)" when adding section nodes in Sphinx extension
I am trying to write a new Sphinx extension. A minimum example of an extension that does something similar to what I want is
from docutils import nodes
from docutils.parsers.rst import Directive
clas...
Milliron X
Votes: 0
Answers: 1