2

我正在尝试pytesseract第一次使用。我对 python 也不太满意。我在python_test桌面上创建了一个新文件夹。我在 Mac 上。在这个文件夹中,我有一个test.png文件和一个 py 脚本:

from pytesseract import image_to_string
from PIL import Image

print image_to_string(Image.open('test.png'))
print image_to_string(Image.open('test-english.jpg'), lang='eng')

所以从我的终端,我进入 python_test 文件夹然后我正在运行python read.py然后我有以下错误:

Traceback (most recent call last):
  File "read.py", line 4, in <module>
    print image_to_string(Image.open('test.png'))
  File "/anaconda/anaconda/lib/python2.7/site-packages/pytesseract/pytesseract.py", line 161, in image_to_string
    config=config)
  File "/anaconda/anaconda/lib/python2.7/site-packages/pytesseract/pytesseract.py", line 94, in run_tesseract
    stderr=subprocess.PIPE)
  File "/anaconda/anaconda/lib/python2.7/subprocess.py", line 711, in __init__
    errread, errwrite)
  File "/anaconda/anaconda/lib/python2.7/subprocess.py", line 1343, in _execute_child
    raise child_exception
OSError: [Errno 2] No such file or directory

我做错了什么?

4

2 回答 2

3

我得到了和你一样的错误,安装tesseract包修复它(或tesseract-ocr在 debian/ubuntu 上)。它包含由pytesseract.

如果未安装底层本机库,则图像加载错误似乎是库失败的一种奇怪方式,但你去了。

安装使用命令(根据需要插入 sudo)

苹果系统

brew install tesseract

ubuntu

apt install tesseract-ocr
于 2017-05-21T00:03:15.800 回答
1

我第一次使用时也遇到了错误image_to_string

您必须更改pytesseract.py文件中的以下行。

tesseract_cmd = 'C:\\Tesseract-OCR\\tesseract'

注意:我使用的是窗户。

于 2017-08-21T09:59:14.277 回答