2017-11-13 19 views
0

私はimgkit(PIモジュール)を学んでいるうちに、単純なコードでは期待されていなかったこのエラーを受け取りました。以下のコードimgkitの実行中に予期しないエラーが発生しました

import imgkit 

imgkit.from_url('https://www.google.co.in/','fs.jpg') 

であり、私が得たエラーが

Traceback (most recent call last): 
    File "G:\python\lib\site-packages\imgkit-0.1.8-py3.6.egg\imgkit\config.py", line 30, in __init__ 
    with open(self.wkhtmltoimage): 
FileNotFoundError: [Errno 2] No such file or directory: b'' 

During handling of the above exception, another exception occurred: 

Traceback (most recent call last): 
    File "C:\Users\ALEXANDER\Desktop\def img.py", line 3, in <module> 
    imgkit.from_url('https://www.google.co.in/','fs.jpg') 
    File "G:\python\lib\site-packages\imgkit-0.1.8-py3.6.egg\imgkit\api.py", line 20, in from_url 
    rtn = IMGKit(url, 'url', options=options, toc=toc, cover=cover, config=config, cover_first=cover_first) 
    File "G:\python\lib\site-packages\imgkit-0.1.8-py3.6.egg\imgkit\imgkit.py", line 34, in __init__ 
    self.config = Config() if not config else config 
    File "G:\python\lib\site-packages\imgkit-0.1.8-py3.6.egg\imgkit\config.py", line 36, in __init__ 
    'http://wkhtmltopdf.org\n'.format(self.wkhtmltoimage)) 
OSError: No wkhtmltoimage executable found: "b''" 
If this file exists please check that this process can read it. Otherwise please install wkhtmltopdf - http://wkhtmltopdf.org 

誰もが私がやっていることの間違いを教えてもらえます。

+0

エラーが表示されます。 "このファイルが存在する場合は... wkhtmltopdf - http://wkhtmltopdf.orgをインストールしてください。"そのモジュールをインストールしてみてください。 – DRPK

答えて

0

wkhtmltopdfをインストールする必要があるようです。これを実行するには、pip install wkhtmltopdf

+0

私はwkhtmltopdfをインストールしようとしていましたが、インストールが完了していません。[link](https://imgur.com/a/ooBNU)は同じ結果からピピから新鮮なコピーをダウンロードしました。 wkhtmltopdf 0.1でも試してみましたが、進歩はありませんでした。他の誰かがこの問題に遭遇しましたか? – oneclick

関連する問題