hello,
i'm generating a pdf in a workflow with python. therefor i'm using the installed python-pdf library
however, when i invoke the generate_pdf command i receive the following error:
{"data":null,"error":"RuntimeError: error running wkhtmltopdf, command: ['--cache-dir', '/tmp/pydf_cache', '-', '-']\nresponse: \"/usr/local/lib/python3.10/site-packages/pydf/bin/wkhtmltopdf: error while loading shared libraries: [libjpeg.so](http://libjpeg.so/).8: cannot open shared object file: No such file or directory\" (line 129)"}
steps to reproduce:
create python code block in workflow
import pydf
import requests
res = requests.get("[https://retool.com](https://retool.com/)")
pdf = pydf.generate_pdf(res.text)
thanks for your help/ideally fixing!