Is there a way to install poppler for python 3 in linux?
I have used apt-get install python-poppler
to install it for python 2, but I haven't found how to do it for python 3.
I am using Ubuntu 14.04 trusty
Is there a way to install poppler for python 3 in linux?
I have used apt-get install python-poppler
to install it for python 2, but I haven't found how to do it for python 3.
I am using Ubuntu 14.04 trusty
On Ubuntu 16.04 you can install the package python3-poppler-qt4
or python3-poppler-qt5
, e.g.,:
sudo apt-get install python3-poppler-qt4
python3-poppler-qt5
does not appear to be available on releases prior to Xenial, and python3-poppler-qt4
can be installed this way on 16.04 or 15.10, but not earlier.
© 2022 - 2024 — McMap. All rights reserved.
pip
for installation? – Morphinismpip
to install though. I will write an answer later if I can figure out how to solve it. – Morphinism