gpt4 book ai didi

flask - wkhtmltopdf OSError : [Errno 2] No such file or directory

转载 作者:行者123 更新时间:2023-12-03 16:58:39 25 4
gpt4 key购买 nike

我正在尝试使用 pdfkit 在我的 flask 应用程序中生成 pdf .

在本地主机上,应用程序工作正常,没有任何错误,在我在 ubuntu 服务器 vps 上部署应用程序后,当尝试生成 pdf 文件时,它在控制台中给了我这个错误:

Apr 12 16:31:51 ubuntu gunicorn[18725]:     self.configuration = (Configuration() if configuration is None
Apr 12 16:31:51 ubuntu gunicorn[18725]: File "/home/userp/app/venv/local/lib/python2.7/site-packages/pdfkit/configuration.py", line 18, in
Apr 12 16:31:51 ubuntu gunicorn[18725]: ['which', 'wkhtmltopdf'], stdout=subprocess.PIPE).communicate()[0].strip()
Apr 12 16:31:51 ubuntu gunicorn[18725]: File "/home/userp/app/venv/local/lib/python2.7/site-packages/gevent/subprocess.py", line 585, in __
Apr 12 16:31:51 ubuntu gunicorn[18725]: reraise(*exc_info)
Apr 12 16:31:51 ubuntu gunicorn[18725]: File "/home/userp/app/venv/local/lib/python2.7/site-packages/gevent/subprocess.py", line 554, in __
Apr 12 16:31:51 ubuntu gunicorn[18725]: restore_signals, start_new_session)
Apr 12 16:31:51 ubuntu gunicorn[18725]: File "/home/userp/app/venv/local/lib/python2.7/site-packages/gevent/subprocess.py", line 1312, in _
Apr 12 16:31:51 ubuntu gunicorn[18725]: raise child_exception
Apr 12 16:31:51 ubuntu gunicorn[18725]: OSError: [Errno 2] No such file or directory

内部下方 配置.py 如果我试图打印出 self.wkhtmltopdf 的值它显示文件路径 /usr/bin/wkhtmltopdf :
if not self.wkhtmltopdf:
if sys.platform == 'win32':
self.wkhtmltopdf = subprocess.Popen(
['where', 'wkhtmltopdf'], stdout=subprocess.PIPE).communicate()[0].strip()
else:
self.wkhtmltopdf = subprocess.Popen(
['which', 'wkhtmltopdf'], stdout=subprocess.PIPE).communicate()[0].strip()

try:
with open(self.wkhtmltopdf) as f:
pass
except IOError:
raise IOError('No wkhtmltopdf executable found: "%s"\n'
'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' % self.wkhtmltopdf)

还输入 which wkhtmltopdf给出相同的结果,这意味着程序已经安装。

当我在我的机器上安装它们时,我已经安装了所有必要的库。

最有趣的是,如果我从 python manage.py runserver 运行应用程序并尝试生成 pdf 文件,它生成并没有出现错误,但是从 gunicorn 和 nginx 出现错误!!!!!!

我已经尝试了一切来使这项工作,我也看到了很多他们谈论这个问题但无济于事的文章!!!!

最佳答案

问题很可能是无法在您的服务器 vps 中以 headless 状态运行 wkhtmltopdf。

看看https://pypi.org/project/headless-pdfkit/0.1.1/#files

这还需要安装 xvfb,它会在执行之前用/bin/bash\nxvfb-run 包装 wkhtmltopdf 命令。

关于flask - wkhtmltopdf OSError : [Errno 2] No such file or directory,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/49794491/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com