With all dependencies installed, I have the following error messages:
Traceback (most recent call last): File "/usr/lib/python3.9/site-packages/krop/pdfcropper.py", line 28, in <module> from pyPdf import PdfFileReader, PdfFileWriter ModuleNotFoundError: No module named 'pyPdf' During handling of the above exception, another exception occurred: Traceback (most recent call last): File "/usr/bin/krop", line 33, in <module> sys.exit(load_entry_point('krop', 'console_scripts', 'krop')()) File "/usr/lib/python3.9/site-packages/krop/application.py", line 81, in main from krop.mainwindow import MainWindow File "/usr/lib/python3.9/site-packages/krop/mainwindow.py", line 46, in <module> from krop.pdfcropper import PdfFile, PdfCropper, PdfEncryptedError, optimizePdfGhostscript File "/usr/lib/python3.9/site-packages/krop/pdfcropper.py", line 34, in <module> raise RuntimeError(_msg) RuntimeError: Please install PyPDF2 (or its predecessor pyPdf) first. On recent versions of Ubuntu, the following should do the trick: sudo apt-get install python-pypdf2 (or, if using python3) sudo apt-get install python3-pypdf2
Any solution? Thanks in advance.
Pinned Comments