[Tex/LaTex] Sphinx error in converting latex to pdf

documentationerrorspython

I'm trying to convert latex to pdf of CherryPy docs for offline usage. After I generated the latex I changed into build/latex directory and run "make all-pdf" and error happened. Sorry I don't know to fix this.
I attached the error log here http://errorpaste.appspot.com/logs/1001/sphinx-convert-latex-to-pdf-error

Best Answer

The line ! LaTeX Error: File 'fancybox.sty' not found. indicates that you are missing the fancybox LaTeX package. If you are using the Debian/Ubuntu TeXLive package this (and other missing packages) can be installed as follows:

sudo apt-get install texlive-latex-recommended
Related Question