Pablo Guerrero
Pablo Guerrero

Reputation: 1074

how to install poppler for python 3 in linux?

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

Upvotes: 4

Views: 5697

Answers (1)

elethan
elethan

Reputation: 17003

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.

Upvotes: 3

Related Questions