首次在此处发布,顺便说一句,我对这条特定的Python(3.6(代码有一个问题:
file_converted = pandoc.convert_file(PATH_TO_ODT, 'pdf', format="odt", outputfile=file_name + ".pdf", extra_args=['--pdf-engine=pdflatex'])
当我执行脚本(要将.ODT文件转换为.pdf文件(时,我会遇到以下错误:
RuntimeError: Pandoc died with exitcode "47" during conversion: b'pdflatex not found. Please select a different --pdf-engine or install pdflatex
基本上我知道我需要" pdflatex",但是在使用命令
将其安装后 pip install pdflatex
,执行会产生相同的错误消息,我应该做什么或检查什么?谢谢大家。
对于PYPANDOC,它只是调用pandoc
Commandline程序,该程序又调用pdflatex
,您可能应该安装乳胶系统范围内。在Ubuntu上,也就是说:
sudo apt install texlive
mb21 :: pandoc实际上进行了自己的转换 - 非常涉及算法。我最近查看了主要作者(John Macfarlene(的演讲,Pandoc实际上将源转化为其自己的内部格式AST。从AST格式,它可以转换为文档格式的长列表。因此,Pandoc不仅调用Pdflatex。