pytesseract.pytesseract.TesseractNotFoundError
时间: 2023-11-16 14:44:09 浏览: 58
pytesseract
5星 · 资源好评率100%
这个错误通常表示 Tesseract OCR 没有安装或者没有正确配置。Tesseract OCR 是一个开源的 OCR 引擎,它可以识别图片中的文字。如果你使用的是 Python 的 pytesseract 库,那么你需要先在系统上安装 Tesseract OCR,并将其添加到环境变量中。
如果你使用的是 Windows 操作系统,可以从以下链接下载 Tesseract OCR:https://github.com/UB-Mannheim/tesseract/wiki。
安装完成后,你需要将 Tesseract OCR 的 bin 目录添加到环境变量 PATH 中。你可以通过运行以下命令来检查 Tesseract OCR 是否已正确安装并配置:
```python
import pytesseract
print(pytesseract.get_tesseract_version())
```
如果你仍然遇到问题,可能需要检查你的 pytesseract 版本是否与 Tesseract OCR 版本兼容,或者尝试重新安装 Tesseract OCR。
阅读全文