I would like to know how we are supposed to deploy pdf2image.
Indeed, this library requires Poppler, but it is impossible to add poppler to the requirements.
Have you even encounter this?
You need to use a packages.txt
file in addition to a requirements.txt
file.
The packages file is all the things you need to sudo apt-get install
and the requirements file is all the things you need to pip install
.
Oh I see!
Thanks for your reply, I will try that!