您当前的位置:首页 > 计算机 > 编程开发 > Python

pytesseract.pytesseract.TesseractNotFoundError: tesseract is not installed or it's not in your

时间:10-20来源:作者:点击数:

windows环境下使用pytesseract识别验证码中文字时报错:

pytesseract.pytesseract.TesseractNotFoundError: tesseract is not installed or it's not in your path

1

报错原因很明确: 没有找到 tesseract

解决方案:

1.找到python的安装路径下的pytesseract: 例如我的是 E:\Python3.7.1\Lib\site-packages\pytesseract

2

2.用文本编辑器打开,查找tesseract_cmd

将原来的 tesseract_cmd = 'tesseract' 改为: tesseract_cmd = 'OCR的安装路径下的tessract.exe'

例如我的是 tesseract_cmd = 'C:\Program Files\Tesseract-OCR\\tesseract.exe'

注意有的地方需要转义 例如 \\tesseract.exe,或者也可直接加r转义

tesseract_cmd = r'C:\Program Files\Tesseract-OCR\tesseract.exe'

3

3.运行:不报错了

4
方便获取更多学习、工作、生活信息请关注本站微信公众号城东书院 微信服务号城东书院 微信订阅号
推荐内容
相关内容
栏目更新
栏目热门