Cannot Import 'pypdf2' In Python 3.7
I am wondering, why, for the life of me I cannot import and use PyPDF2 (PDF library) in Python 3.7. Firstly, my import fails at top of main.py (i.e. below) from PyPDF2 import PdfFi
Solution 1:
You can do something like this:
pip install https://pypi.org/project/PyPDF2/1.23/
Post a Comment for "Cannot Import 'pypdf2' In Python 3.7"