我已经看到了有关pdfkit + wkhtmltopdf的一些问题,但是我没有找到适合我的环境的解决方案:
我正在使用Mac,Python 2.7,并且所有内容都使用conda进行了设置。
我已经安装了wkhtmltopdf和pdfkit,它们都是使用conda设置的,并且位于anaconda2/pkgs
文件夹中。尝试运行时出现此错误:
IOError: No wkhtmltopdf executable found: ""
If this file exists please check that this process can read it. Otherwise please install wkhtmltopdf - https://github.com/JazzCore/python-pdfkit/wiki/Installing-wkhtmltopdf
这表示没有文件路径,根据我的研究,我可以使用
内联配置URL。path_wkthmltopdf = 'url_to_file'
config = pdfkit.configuration(wkhtmltopdf=path_wkthmltopdf)
pdfkit.from_url("http://google.com", "out.pdf", configuration=config)
但是我不知道将其配置为哪个URL。我本机是Windows用户,因此通常会进行C:/Windows/Users/..
等操作,但是我不知道与Mac等效。