Celeb Glow
updates | April 03, 2026

pdflatex not found while installing "R" software on Ubuntu 19.04

I am trying to install R software on Ubuntu 19.04, by compiling the installer on my system. Several libraries are missing, but I managed to install them all, apart from one called 'pdflatex'.

 make[1]: Entering directory '/home/giulio/Desktop/r-base_3
'pdflatex' is needed to make vignettes but is missing on your system.

I didn't manage to find how to install on the web, could you help me with this issue?

Best Giulio

1

1 Answer

You need to install the texlive-latex-base package, which provides this utility:

sudo apt-get install texlive-latex-base

And also please note, that R is packaged in Ubuntu as r-base and r-base-dev packages (see search results, you will get R 3.5.2). You do not need to compile R by yourself (usually).
If you need R 3.6 - use binary repository from R-CRAN.

Your Answer

Sign up or log in

Sign up using Google Sign up using Facebook Sign up using Email and Password

Post as a guest

By clicking “Post Your Answer”, you agree to our terms of service, privacy policy and cookie policy