How to Solve NameError: name 'PyPDF2' is not defined

Solution: Import the 'PyPDF2' module

To Solve the error, add the following line to the top of your code.

import PyPDF2

 

For more information:
Python PyPDF2