pythonseract python3上的错误FileNotFoundError:[WinError 2]

时间:2015-11-17 16:50:53

标签: python python-3.x

我在我的64位Windows 8.1机器上使用python 3.4。我已经成功安装了pytesseract 0.1.6和Pillow 3.0.0。这是我的代码:

import pytesseract
from PIL import Image

img = Image.open('test.png')
print(pytesseract.image_to_string(img))

test.png与项目位于同一文件夹中。我也尝试过JPG图像格式,但我遇到了同样的问题。

以下是错误代码:

FileNotFoundError: [WinError 2] The system cannot find the file specified

我该怎么做才能避免这个错误?提前谢谢。

0 个答案:

没有答案