Installing R on Linux: configure: WARNING: you cannot create PDF versions of R manuals

When setting up R on Debian GNU / Linux 8.8 (jessie) I get the above warning. Any ideas what should be set to solve the problem and create PDF manuals?

+3


source to share


1 answer


A possible solution is to install LaTeX:

sudo apt-get install texlive

      

This allows PDFs to be generated, but leaves a warning about missing style files:



configure: WARNING: neither inconsolata.sty nor zi4.sty found: PDF vignettes and package manuals will not be rendered optimally

      

To fix this issue, install the additional font package in texlive

sudo apt-get install texlive-fonts-extra

      

+6


source







All Articles