![]() |
install pdfminer - Printable Version +- Python Forum (https://python-forum.io) +-- Forum: Python Coding (https://python-forum.io/forum-7.html) +--- Forum: General Coding Help (https://python-forum.io/forum-8.html) +--- Thread: install pdfminer (/thread-7468.html) |
install pdfminer - tkj80 - Jan-11-2018 Hi, I tried to install pdfminer. I used the following code on cmd: C:\Downloads> python -m pip install pdfminer. However I got the following error: SyntaxError: Missing parentheses in call to 'print' I have Python 3.6 and Anaconda3 installed on my computer. Could it be because I'm running Python 3.6? Please advise, thank you! RE: install pdfminer - snippsat - Jan-12-2018 For Python 3 use pdfminer.six pip install pdfminer.six RE: install pdfminer - sparkz_alot - Jan-12-2018 pdfminer is for version 2, you probably want the fork for versions 2 & 3 pdfminer.six |