FelixFrog / pdfgrabber

Download PDF books from bSmart, Pearson, Oxford, and many more!
GNU Affero General Public License v3.0
105 stars 15 forks source link

Cannot find module named fitz #107

Open isis727 opened 1 week ago

isis727 commented 1 week ago

When I execute the Main.py file an error occurs: " import fitz ModuleNotFoundError: No module named 'fitz' " I tried solving it by installing fits with the "pip install fitz", but the error still occurs

FelixFrog commented 1 week ago

You should not install the fitz module, beacuse that is not pymupdf but something else that happens to have that name. You should remove it. Try this:

pip uninstall pymupdf fitz
pip install pymupdf
isis727 commented 1 week ago

I did this, but I still get the same error ModuleNotFoundError: No module named 'fitz'