Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

libtesseract.so.4 not found error in demo file #1

Closed
abhiTronix opened this issue Dec 14, 2018 · 0 comments
Closed

libtesseract.so.4 not found error in demo file #1

abhiTronix opened this issue Dec 14, 2018 · 0 comments

Comments

@abhiTronix
Copy link
Owner

abhiTronix commented Dec 14, 2018

Solution:

install Leptonica(install from source)

wget http://www.leptonica.com/source/leptonica-1.76.0.tar.gz
tar xvf leptonica-1.76.0.tar.gz
cd leptonica-1.76.0/
./configure
make -j2
sudo make install
sudo ldconfig

then

install Tesseract(install from source)

wget https://github.com/tesseract-ocr/tesseract/archive/4.0.0.zip -O tesseract-4.0.0.zip
unzip tesseract-4.0.0.zip && mv tesseract-4.0.0 tesseract
cd tesseract
./autogen.sh
./configure
make -j2
sudo make install
sudo ldconfig

Problem Solved 👍

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Projects
None yet
Development

No branches or pull requests

1 participant