1

嗨,我是 python 和 OCR 的新手。我正在尝试实施 OCR。我已经安装了 OCR 所需的所有依赖项。同样重要的是我正在使用 Anaconda custom 提供的 Python。因此,当我尝试导入 pytesser 时,它会显示给我ModuleNotFoundError: No module named 'pytesser'。我正在尝试执行一个简单的以下程序:

import sys
print (sys.path)
from PIL import Image
from pytesser import *

image_file = 'imageSample1.jpg'
im = Image.open(image_file)
text = image_to_string(im)
text = image_file_to_string(image_file)
text = image_file_to_string(image_file, graceful_errors=True)
print ("=====output=======\n")
print (text)

并得到以下输出:

nilkash@nilkash:~/ubuntuBackup/My_Folder/Its_my_work/DS/ML&AI/ImageRecognition$ python SampleImageContentRecognition.py 
['/home/nilkash/ubuntuBackup/My_Folder/Its_my_work/DS/ML&AI/ImageRecognition', '/home/nilkash/anaconda3/lib/python36.zip', '/home/nilkash/anaconda3/lib/python3.6', '/home/nilkash/anaconda3/lib/python3.6/lib-dynload', '/home/nilkash/anaconda3/lib/python3.6/site-packages', '/home/nilkash/anaconda3/lib/python3.6/site-packages/Sphinx-1.5.6-py3.6.egg', '/home/nilkash/anaconda3/lib/python3.6/site-packages/setuptools-27.2.0-py3.6.egg']
Traceback (most recent call last):
  File "SampleImageContentRecognition.py", line 4, in <module>
    from pytesser import *
ModuleNotFoundError: No module named 'pytesser'

我相信因为 python 的 conda 分布它不能使用它。有什么方法可以链接。或者我做错了什么。需要一些帮助。谢谢你。

我深入研究了这个问题。我安装了两个python版本,一个是python2.7,另一个是python3.6。所以我所有的pytesseract配置都是用python2.7。但我使用的是 3.6 版。所以我认为我需要做的是删除所有 pytesseract 并针对 python3.6 安装。否则将所有配置移至指向python3.6。我试图通过 conda 版本的 pytesseractconda install -c auto pytesseract但得到以下错误:

UnsatisfiableError: The following specifications were found to be in conflict:
  - pytesseract -> python 2.7*
  - python 3.6*
Use "conda info <package>" to see the dependencies for each package.

有没有办法解决这个问题。需要一些帮助。

4

2 回答 2

3

您应该能够在您的 anaconda 提示符中使用 PIP 使用 Pip 将软件包安装到 Anaconda 环境

打开 anaconda 命令行提示符并使用 pip 安装您的软件包

IE

pip install pytesseract
于 2017-12-02T07:37:26.823 回答
0

看起来它们不在同一路径下,python 找不到它。

请参考此链接:

tesseract安装后如何重置系统变量PATH

于 2019-06-27T06:14:34.583 回答