Ubuntu 15.04 の deb ファイルから python-tesseract 0.9-0.5 をインストールしようとしていますが、いくつかのエラーが発生します。これが私がすることです:
1-端末でファイルのパスを開き、書き込みます
sudo dpkg -i python-tesseract_0.9-0.5ubuntu2_i386.deb
2- この後、コンソールにいくつかのエラーが表示されます。
Selecting previously unselected package python-tesseract.
(Reading database ... 349994 files and directories currently installed.)
Preparing to unpack python-tesseract_0.9-0.5ubuntu2_i386.deb ...
Unpacking python-tesseract (0.9-0.5ubuntu2) ...
dpkg: dependency problems prevent configuration of python-tesseract:
python-tesseract depends on python (<< 2.8).
python-tesseract depends on python (>= 2.7~).
python-tesseract depends on liblept4.
python-tesseract depends on libopencv-core2.4; however:
Package libopencv-core2.4:i386 is not installed.
python-tesseract depends on libtesseract3; however:
dpkg: error processing package python-tesseract (--install):
dependency problems - leaving unconfigured
Errors were encountered while processing:
python-tesseract
3- 確認のため、インストール ファイルを開いて tesseract.py クラスを抽出し、Python で単独で使用しました。私はこの方法でそれを開きました:
python tesseract.py
、しかし、私はこれを得ました:
Traceback (most recent call last):
File "tesseract.py", line 28, in <module>
_tesseract = swig_import_helper()
File "tesseract.py", line 20, in swig_import_helper
import _tesseract
ImportError: No module named _tesseract
問題は、Pythonで光学式文字認識アプリケーションにtesseract関数を使用したいということです。これに最適なラッパーはpython-tesseractであることを理解しています(pytesseractとは異なります)。
私の質問は、Ubuntu 15.04 に python-tesseract をインストールするにはどうすればよいですか? どうもありがとう