Where do I get the pdflatex program for Mac?

47

5

I'm trying to convert Jupyter notebook to .pdf on Mac.

However, it tells me

nbconvert tailed: pdflatex not found on PATH

So, I went looking around and someone said, "Install mactex because this other way takes days to compile". So I did brew install Caskroom/cask/mactex and it finished without telling me there was a problem, but unfortunately it didn't install pdflatex that I can gather. And 'mac install pdflatex' doesn't bring anything useful up on Google for me maybe my bubble sucks.

How do I install pdflatex on my mac?

Wayne Werner

Posted 2016-02-11T16:39:45.830

Reputation: 1 501

Have you tried https://tug.org/mactex/mactex-download.html ?

– Arch Stanton – 2016-02-11T16:46:55.390

Answers

17

It appears that brew does not, technically speaking, install mactex. It just downloads it.

I had to use the quick launch and type in mactex which popped up an installer.

After it finished I pdflatex existed, though I did have to start up a new shell - I'm assuming it did something to my path.

Wayne Werner

Posted 2016-02-11T16:39:45.830

Reputation: 1 501

3I just tried and installing the cask did install MacTeX. But I had to start a new shell instance for pdflatex to be recognisable. This is because installing MacTeX modifies your PATH by including /Library/TeX/texbin which is where the pdflatex binary lives. – Dennis – 2017-02-02T18:42:08.217

I ran brew cask install mactex but pdflatex didn't show up in /Library/TeX/texbin. Instead it was in /Library/Tex/Distributions/.DefaultTeX/Contents/Programs/x86_64/pdflatex. – ijt – 2019-01-18T05:01:52.600

39

Yes, same story with my MacOS Sierra:

(1) installed mactex with homebrew cask, but no pdflatex found after that:

$ brew cask install mactex

$ which pdflatex

[no location]

(2) relaunched the terminal app

(3) pdflatex found:

$ which pdflatex

/Library/TeX/texbin/pdflatex

Elena Shebunyaeva

Posted 2016-02-11T16:39:45.830

Reputation: 491

For me just cmd+t in iTerm helped. – mrgloom – 2019-10-31T11:34:43.943

23

Install BasicTeX

To get pdflatex for Pandoc on macOS, install BasicTeX. Many people recommend MacTeX, which is a much bigger package than you need. BasicTex is produced by the same people who make MacTeX, but without, e.g., the GUI applications that make it so slow to download and install.

  1. $ brew cask install basictex
  2. Restart Terminal.
  3. Convert LaTeX to PDF.

Example

Say you want to convert LaTex to PDF with Pandoc. You'd write:

  1. $ pandoc sourcefile.tex -o output.pdf, which fails with error pdflatex not found. Please select a different --pdf-engine or install pdflatex.
  2. So you install BasicTex, $ brew cask install basictex.
  3. Then restart your Terminal, and
  4. Run $ pandoc sourcefile.tex -o output.pdf again. Success!

Merchako

Posted 2016-02-11T16:39:45.830

Reputation: 1 610

Installing basictex this way did not seem to work for me for generating a PDF: $ pandoc a.tex -o b.pdf [WARNING] Unusual conversion: to convert a .tex file to PDF, you get better results by using pdflatex (or lualatex or xelatex) directly, try \pdflatex a.tex` instead of `pandoc a.tex -o b.pdf`. pdflatex not found. Please select a different --pdf-engine or install pdflatex` – Taylor Edmiston – 2020-01-15T02:18:41.593

I get the same error as Taylor Edmiston. Additionally, pdflatex itself errors a lot of could not find *.sty and then doesn't generate a PDF at the end... – theonlygusti – 2020-02-03T02:09:09.143