Ubuntu 14.04を使用しています。私は次のコードを持っています:
import Image
import pytesseract
im = Image.open('test.png')
print pytesseract.image_to_string(im)
しかし、私は次のエラーを取得し続けます:
Traceback (most recent call last):
File "<stdin>", line 1, in <module>
File "/usr/lib/python2.7/dist-packages/spyderlib/widgets/externalshell/sitecustomize.py", line 540, in runfile
execfile(filename, namespace)
File "/home/chaitanya/pythonapp/localcopy.py", line 4, in <module>
print pytesseract.image_to_string(im)
File "/usr/local/lib/python2.7/dist-packages/pytesseract/pytesseract.py", line 142, in image_to_string
config=config)
File "/usr/local/lib/python2.7/dist-packages/pytesseract/pytesseract.py", line 75, in run_tesseract
stderr=subprocess.PIPE)
File "/usr/lib/python2.7/subprocess.py", line 710, in __init__
errread, errwrite)
File "/usr/lib/python2.7/subprocess.py", line 1327, in _execute_child
raise child_exception
OSError: [Errno 2] No such file or directory
pythonプログラムと画像は同じ場所にあります。問題は何ですか??
tesseract-ocr
をインストールする必要があります:
Sudo apt-get install tesseract-ocr
私の設定に合わせて調整した@padraic cunninghamの回答に基づいています。
Linux(ubuntu 16、重要ではない)でcondaをインストールしている場合:
最初にインストールする必要があるものを検索します。
$ anaconda search -t conda tesserocr
いくつかのオプションがあります。プラットフォームとビルドを見て、あなたにとって意味のあるものを特定する必要があります。
python 3.6とlinux-64があるので、mcs07/tesserocrを選択しました
インストールするには:
$ conda install -c mcs07 tesserocr
それでおしまい。ターミナルの再起動などは必要ありませんでした。ただ続けた。
Windowsを使用していて、PIPがインストールされている場合は、プロジェクトディレクトリに移動して次を実行します。
pip install tesseract-ocr