現在、tesseractの学習方法について勉強しようと思い、training toolsをインストールしようと考えています。以下の資料を参考にしました。
参考資料
以下が実際に行った手順です。
sudo port install automake autoconf sudo port install pkgconfig sudo port install leptonica sudo port install cairo pango brew install icu4c && brew link icu4c git clone https://github.com/tesseract-ocr/tesseract/ cd tesseract ./autogen.sh ./configure \ --with-extra-libraries=/usr/local/opt/icu4c/lib \ --with-extra-includes=/usr/local/opt/icu4c/include \ LDFLAGS=-L/usr/local/opt/icu4c/lib \ CPPFLAGS=-I/usr/local/opt/icu4c/include make sudo make install make training sudo make training-install
make install まではうまくいったのですが、make training以降がうまくいきませんでした。
各コマンドで出てきたメッセージが以下の通りです。
make install
Need to reconfigure project, so there are no errors
sudo make training-install
make: *** No rule to make target `training-install'. Stop.
私はこれまでbrew install でしかライブラリをインストールしたことがなく、またプログラミングを始めたばかりであるため解決方法がわからい状態です。
解決方法について助言していただけるとありがたいです。
よろしくお願いします。
あなたの回答
tips
プレビュー