作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我正在尝试使用 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
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/
我是一名优秀的程序员,十分优秀!