gpt4 book ai didi

正方体语法错误 :'Creating User Config File' 错误

转载 作者:行者123 更新时间:2023-12-04 20:29:47 31 4
gpt4 key购买 nike

我最近安装了 Tesseract 模块并找到了一些教程,但我遇到的互联网上没有任何解决方案。以下是简单的代码和错误:

from PIL import Image
from tesseract import image_to_string
a = Image.open('/Users/bob/Desktop/108.jpg')
b = image_to_string(a)
print(b)

这是错误:
print 'Creating user config file: {}'.format(_config_file_usr)
^
SyntaxError: invalid syntax

这是图片: 108.png

最佳答案

不要使用 from tesseract import image_to_string
pip install pytesseractimport pytesseract
此外,请确保您在 .py 文件中分配 .exe,如下所示:
pytesseract.pytesseract.tesseract_cmd = 'C:/Program Files (x86)/Tesseract-OCR/tesseract'
This answer goes into depth on how to do it correctly

并且您的程序将需要从以下方面进行修改:

a = Image.open('/Users/bob/Desktop/108.jpg')
b = image_to_string(a)`


text = pytesseract.image_to_string(Image.open('/Users/bob/Desktop/108.jpg'))

关于正方体语法错误 :'Creating User Config File' 错误,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/49368970/

31 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com