已解决pytesseract.pytesseract.TesseractNotFoundError: tesseract is not installed or it‘s not in your PA

这篇具有很好参考价值的文章主要介绍了已解决pytesseract.pytesseract.TesseractNotFoundError: tesseract is not installed or it‘s not in your PA。希望对大家有所帮助。如果存在错误或未考虑完全的地方,请大家不吝赐教,您也可以点击"举报违法"按钮提交疑问。

已解决pytesseract模块提取图片内文字信息,抛出异常pytesseract.pytesseract.TesseractNotFoundError: tesseract is not installed or it’s not in your PATH. See README file for more information.的正确解决方法,亲测有效!!!









报错问题



一个粉丝群小伙伴遇到问题跑来私信我,想用pytesseract模块提取图片内文字信息,但是发生了报错(当时他心里瞬间凉了一大截,跑来找我求助,然后顺利帮助他解决了,顺便记录一下希望可以帮助到更多遇到这个bug不会解决的小伙伴),报错代码如下所示:

import cv2
import pytesseract

img = cv2.imread(r'E:\Python\tb_600653387.png')
gray = cv2.cvtColor(img, cv2.COLOR_BGR2GRAY)
text = pytesseract.image_to_string(gray)
print(text)

报错信息内容截图如下所示


已解决pytesseract.pytesseract.TesseractNotFoundError: tesseract is not installed or it‘s not in your PA,python,pytesseract,图像识别



报错翻译



报错信息内容翻译如下所示:


pytesseract.pytesseract.Tessract找不到报错:tesseract未安装或不在您的PATH中。有关详细信息,请参阅自述文件

报错原因



出现这个报错有下面两个原因

1、安装了pytesseract模块,没有安装Tesseract-OCR依赖识别
2、安装Tesseract-OCR但是指定的路径不对

小伙伴们按下面的方法解决即可!!!



解决方法



1、安装Tesseract、Tesseract、Pillow模块,可以使用以下命令:

pip install pytesseract
pip install pillow
pip install tesseract-ocr # 如果这个安装报错就用下面的手动安装方法

2、从网上找到相应的‘Tesseract-OCR’下载安装(自行寻找对应版本):https://digi.bib.uni-mannheim.de/tesseract/
已解决pytesseract.pytesseract.TesseractNotFoundError: tesseract is not installed or it‘s not in your PA,python,pytesseract,图像识别

3、无脑默认安装即可,安装后的默认文件路径为(这里使用的是Windows版本):C:\Program Files\Tesseract-OCR\


4、找到python的安装路径下的pytesseract,不知道在哪里的的在cmd控制执行pip show pytesseract

例如我的就在D:\Python3.8\Lib\site-packages\pytesseract

已解决pytesseract.pytesseract.TesseractNotFoundError: tesseract is not installed or it‘s not in your PA,python,pytesseract,图像识别

5、进入上面的路径,打开pytesseract.py文件:

已解决pytesseract.pytesseract.TesseractNotFoundError: tesseract is not installed or it‘s not in your PA,python,pytesseract,图像识别


6、然后将源码中的tesseract_cmd = 'tesseract',更改为:

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

7、再次运行代码就成功了:
已解决pytesseract.pytesseract.TesseractNotFoundError: tesseract is not installed or it‘s not in your PA,python,pytesseract,图像识别

以上是此问题报错原因的解决方法,欢迎评论区留言讨论是否能解决,如果有用欢迎点赞收藏文章谢谢支持,博主才有动力持续记录遇到的问题!!!

千人全栈VIP答疑群联系博主帮忙解决报错

由于博主时间精力有限,每天私信人数太多,没办法每个粉丝都及时回复,所以优先回复VIP粉丝,可以通过订阅限时9.9付费专栏《100天精通Python从入门到就业》进入千人全栈VIP答疑群,获得优先解答机会(代码指导、远程服务),白嫖80G学习资料大礼包,专栏订阅地址:https://blog.csdn.net/yuan2019035055/category_11466020.html

  • 优点作者优先解答机会(代码指导、远程服务),群里大佬众多可以抱团取暖(大厂内推机会),此专栏文章是专门针对零基础和需要进阶提升的同学所准备的一套完整教学,从0到100的不断进阶深入,后续还有实战项目,轻松应对面试!

  • 专栏福利简历指导、招聘内推、每周送实体书、80G全栈学习视频、300本IT电子书:Python、Java、前端、大数据、数据库、算法、爬虫、数据分析、机器学习、面试题库等等

  • 注意:如果希望得到及时回复,和大佬们交流学习,订阅专栏后私信博主进千人VIP答疑群已解决pytesseract.pytesseract.TesseractNotFoundError: tesseract is not installed or it‘s not in your PA,python,pytesseract,图像识别
    已解决pytesseract.pytesseract.TesseractNotFoundError: tesseract is not installed or it‘s not in your PA,python,pytesseract,图像识别

免费资料获取,更多粉丝福利,关注下方公众号获取

已解决pytesseract.pytesseract.TesseractNotFoundError: tesseract is not installed or it‘s not in your PA,python,pytesseract,图像识别文章来源地址https://www.toymoban.com/news/detail-608193.html

到了这里,关于已解决pytesseract.pytesseract.TesseractNotFoundError: tesseract is not installed or it‘s not in your PA的文章就介绍完了。如果您还想了解更多内容,请在右上角搜索TOY模板网以前的文章或继续浏览下面的相关文章,希望大家以后多多支持TOY模板网!

本文来自互联网用户投稿,该文观点仅代表作者本人,不代表本站立场。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如若转载,请注明出处: 如若内容造成侵权/违法违规/事实不符,请点击违法举报进行投诉反馈,一经查实,立即删除!

领支付宝红包 赞助服务器费用

相关文章

  • 提取图像中的文本信息(Tesseract OCR 和 pytesseract)

    安装Tesseract:点这里参考本人博客 这个库只自带了一个英语的语言包,这个时候如果我们图片中有对中文或者其他语言的识别需求,就需要去下载其他语言包 进入官网以后进入Traineddata Files 找到这个位置 tessdata_best适用于愿意以大量速度换取稍微好一点的准确性的人。它也是

    2024年02月12日
    浏览(49)
  • 【已解决】Microsoft Visual C++ Redistributable is not installed

    【Error】导入torch,提示报错: Microsoft Visual C++ Redistributable is not installed, this may lead to the DLL load failure. 【Cause】 Anaconda没有默认安装在C盘; 系统没有安装VC++ Redistributable程序。 【Resolve】 VC++ Redistributable.exe 双击安装,重启电脑即可。

    2024年02月13日
    浏览(43)
  • Cargo, the Rust package manager, is not installed or is not on PATH. 解决方案

    今天在配置一个关键时需要执行pip install logru,在执行过程中出现了以下错误:   error: subprocess-exited-with-error   × Preparing metadata (pyproject.toml) did not run successfully.   │ exit code: 1   ╰─ [6 lines of output]       Cargo, the Rust package manager, is not installed or is not on PATH.       This packag

    2024年02月09日
    浏览(49)
  • Python OCR库比较:pyocr、pytesseract和python-tesseract

    在接口自动化工作中,经常需要处理文字识别的任务,而OCR(Optical Character Recognition,光学字符识别)库能够帮助我们将图像中的文字提取出来。Python中有几个常用的OCR库,包括pyocr、pytesseract和python-tesseract。本文将对它们进行比较,并提供一些示例代码来演示它们在实际接口

    2024年02月07日
    浏览(52)
  • 解决:安装VisualAssistX 时,出现安装错误This extension is not installable on any currently installed

    注 :该问题是在新的win10操作系统上出现的,安装绿色免费版VC++6.0后,番茄助手失效。 一句话总结,“国产”的纯净系统+完整版VC++6.0搭建好框架(猜测),再安装绿色免费的VC和番茄即可。  有用的线索只有这一条。原地址:我只安装了VC6.0,在安装 visual assist x时提示thi

    2024年02月11日
    浏览(51)
  • 综合网上git is not installed 解决方案不适用,个人已解决,希望对你有用

    打开idea,从git拉取项目时报错:git is not installed empty git --version output: 电脑安装了git,要保证安装的正确。 git都是下一步下一步的安装,也没什么技巧。安装后会自动设置好环境变量 验证git是否安装成功:git --version 问题:本机安装的git好用,命令行都能执行。idea里的控制

    2024年02月11日
    浏览(39)
  • 解决kong部署自定义插件报 helloworld plugin is enabled but not installed

    背景 我使用的是docker环境部署,使用的是自定义挂载plugins路径 但是当我只需docker run的时候就报错 如何解决 是因为挂的是到 plugins目录,我当时是直接报 handler.lua和schema.lua放在了 plugins目录下面了,不能这么放,应该建个目录 然后把 lua文件放在 /plugins/kong/plugins/helloworld/ 目

    2024年02月07日
    浏览(31)
  • pip install 安装时报Defaulting to user installation because normal site-packages is not writeable解决方法

    我的python的安装目录: C:Program FilesPython37 我的pip install + 包名 包安装的默认安装目录: c:program filespython37libsite-packages 在cmd下pip安装库的时候提示: Defaulting to user installation because normal site-packages is not writeable会把库安装到这个路径下面 C:UsersXXXAppDataRoamingPythonPython37s

    2024年02月05日
    浏览(48)
  • could not build wheels for psutil,which is required to install pyproject 解决方法

    问题描述:为anaconda配置新的python环境并导入到jupyter时出现的错误,在使用conda list ipykernel 来为jupyter安装python内核时,出现了如题所述的错误提示。  看到网上有的比较奇葩的解决办法居然还去专门下载一个 Microsoft Visual C++ 14.0,这完全是给自己制造另一个问题, Microsoft

    2024年02月11日
    浏览(52)
  • QT - QML 遇到 module “QtQuick.Controls“ version 2.5 is not installed 的相关问题的解决策略

    问题由来, 在跟着视频敲代码时,需要用到 DelayButton 这个控件,因此需要导入相关的库模块 (跟着视频敲的是import QtQuick.Controls 2.5 ),但可能由于版本较低的原因没有安装这个库模块。根据输入提示,有个 import QtQuick.Controls 2.1,但是,这个库模块中并不支持 DelayButton 这个

    2024年02月12日
    浏览(43)

觉得文章有用就打赏一下文章作者

支付宝扫一扫打赏

博客赞助

微信扫一扫打赏

请作者喝杯咖啡吧~博客赞助

支付宝扫一扫领取红包,优惠每天领

二维码1

领取红包

二维码2

领红包