序言

住在地下室的人,依然有仰望星空的权利。

Python pdfkit

pdfkit

Python pdfkit

python使用pdfkit中,如果使用pdfkit.fromurl 或者pdfkit.fromstring等,就会出现上述错误。而且如果你使用pip(pip3 install pdfkit)安装了 wkhtmltopdf,还是会出现这个问题:

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

因此需要去安装windows版本的wkhtmltopdf

此处进入下载网址

安装完成之后按照如下代码即可:

# -*- coding:utf-8 -*-

import pdfkit

path_wk = r'C:\Program Files\wkhtmltopdf\bin\wkhtmltopdf.exe' #安装位置
config = pdfkit.configuration(wkhtmltopdf = path_wk)
pdfkit.from_string("123123211",'out.pdf', configuration=config)

资料

 

相关文章:

  • 2022-02-17
  • 2021-09-23
  • 2021-12-28
  • 2022-01-26
  • 2022-12-23
  • 2021-08-14
  • 2021-10-02
  • 2022-01-16
猜你喜欢
  • 2022-02-05
  • 2021-12-05
  • 2022-12-23
  • 2021-10-08
  • 2022-12-23
  • 2021-09-17
  • 2021-11-27
相关资源
相似解决方案