我目前正在开发一个程序,以对PDF进行OCR,并使用tabula-py从中提取表格。使用我自己的PC上的.py文件,一切正常,但是当我尝试使用PyInstaller将其作为可执行文件启动时,出现此错误:
pkg_resources.DistributionNotFound: The 'ocrmypdf' distribution was not found and is required by the application
[10988] Failed to execute script ocr
.exe是必需的,因为我将需要将此程序分发给没有安装Python或ocrmypdf依赖项(Tesseract和Ghostscript)的用户。总体而言,我对Python相当陌生,如何解决此问题?
谢谢!