0

I am trying to install pdf2text with Python 3.7 installed on my machine and I am getting a error

SyntaxError: Missing parentheses in call to 'print'. Did you mean print(version)? Missing parentheses in call to 'print'. Did you mean print(version)?

Is there any other solution to this,I need pdf2text to extract some unstructured table from a pdf file and based on the content of this post on stackoverflow it seems pdf2text works well with unstructured tables extraction.

Laveena
  • 453
  • 1
  • 7
  • 24

1 Answers1

0

looks like library for python 2.x you can try install pdftotext:

pip install pdftotext

or you can download pdf2text wheel and configure it for python 3 like:

print version to print(version)