4

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

Pablo Guerrero
  • 936
  • 1
  • 12
  • 22

1 Answers1

3

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.

elethan
  • 16,408
  • 8
  • 64
  • 87