gpt4 book ai didi

python - (2, 'Usage: pytesseract [-l lang] input_file' ) 在 Google Colab 上

转载 作者:行者123 更新时间:2023-12-04 13:13:07 24 4
gpt4 key购买 nike

我正在尝试将 Tesseract 运行到 Google Colab 中:

!sudo apt install tesseract-ocr
!pip install pytesseract

import pytesseract
import shutil
import os
import random
try:
from PIL import Image
except ImportError:
import Image

from google.colab import files
uploaded = files.upload()

extractedInformation = pytesseract.image_to_string(Image.open('aaa.png'))
print(extractedInformation)

我尝试在我正在上传的图像 ('aaa.png') 上运行,但它运行此错误:

TesseractError: (2, 'Usage: pytesseract [-l lang] input_file')

从几乎相同(仍未解决)的帖子中搜索,我尝试了以下代码,但仍然无法正常工作:

pytesseract.pytesseract.tesseract_cmd = (
r'/usr/local/bin/tesseract'
)

我试图访问 pytesseract 文件夹,但它运行此错误:

enter image description here

PermissionError: [Errno 13] Permission denied: '/usr/local/lib/python3.6/dist-packages/pytesseract/pytesseract.py'

最佳答案

通过使用解决:

pytesseract.pytesseract.tesseract_cmd = (
r'/usr/bin/tesseract'
)

关于python - (2, 'Usage: pytesseract [-l lang] input_file' ) 在 Google Colab 上,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/62904506/

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