Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Problems running epstopdf. Check your TeX installation

I keep getting the following error when running doxygen:

Problems running epstopdf. Check your TeX installation!

Do I need to install Latex somewhere?

like image 847
cdub Avatar asked Sep 18 '12 20:09

cdub


2 Answers

epstopdf is a Perl script that converts EPS to 'encapsulated' PDF using GhostScript. Technically you don't need LaTeX, although it forms part of every TeX distribution by default.

So, either download it directly, or install any one of the major TeX distributions (say, MiKTeX or TeX Live).

like image 174
Werner Avatar answered Sep 20 '22 05:09

Werner


I ran into this when playing around with plantuml (@startuml, @enduml). In the default config, GENERATE_LATEX is set to YES, whereas I only cared for html. When I set GENERATE_LATEX to NO, doxygen does not need epstopdf anymore.

like image 43
ara Avatar answered Sep 19 '22 05:09

ara