住在地下室的人,依然有仰望星空的權利。html
python使用pdfkit中,若是使用pdfkit.fromurl 或者pdfkit.fromstring等,就會出現上述錯誤。並且若是你使用pip(pip3 install pdfkit)安裝了 wkhtmltopdf,仍是會出現這個問題:python
If this file exists please check that this process can read it. Otherwise please install wkhtmltopdf - https://github.com/JazzCore/python-pdfkit/wiki/Installing-wkhtmltopdfgit
所以須要去安裝windows版本的wkhtmltopdfgithub
此處進入下載網址windows
安裝完成以後按照以下代碼便可:this
# -*- 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)