Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

How to install tesseract for python on anaconda

Does anyone know how to install tesseract for python on Anaconda? I have a windows system. The anaconda website gives the installation for a linux system:

conda install -c auto pytesseract 

Would there be any alterations required for a windows system?

like image 311
VK1 Avatar asked Mar 12 '18 11:03

VK1


People also ask

How do I install tesseract source code?

This is a proven build sequence: cd tesseract ./autogen.sh mkdir -p bin/release cd bin/release ../../configure --disable-openmp --disable-shared 'CXXFLAGS=-g -O2 -fno-math-errno -Wall -Wextra -Wpedantic' # Build tesseract and training tools. Run `make` if you don't need the training tools. make training cd ../..


1 Answers

🚀 Working Solution (👨‍🔬 tested at Jun 2019)

  • 🕵️‍♂️ I have searched it on anaconda cloud
  • 🌟 Most downloaded version (for win64) install command:
conda install -c mcs07 tesseract
conda install -c jim-hart pytesseract
like image 164
Yedhrab Avatar answered Sep 25 '22 06:09

Yedhrab