ODOO
configurations
PyPDF2
"ImportError: No module named 'PyPDF2' "
this error means that PyPDF2 package is not installed in your system so you have to install it first , in order to install it go to your terminal and write
- sudo apt-get install python-PyPDF2
if it's not work then you have to install it by using pip , by write
- pip3 install PyPDF2
if it's not work then try
- python3 -m pip install PyPDF2
or
- sudo python3 -m pip install PyPDF2
>>>Hope this useful :)
No comments:
Post a Comment