How to install tesserocr on windows?

前端 未结 4 1627
离开以前
离开以前 2021-01-12 13:44

I downloaded executable file of tesseract-OCR and installed it. On the other hand, I also downloaded a zipfile of leptonica from http://www.leptonica.com/download.html. It i

4条回答
  •  礼貌的吻别
    2021-01-12 13:57

    Use Anaconda to install TesserOCR in an environment named OCR

    1. Install Anaconda for Windows from here
    2. Open Anaconda Prompt:

      conda create -n OCR python=3.6

      activate OCR

    3. For tesseract 3.5.1 (stable):

      conda install -c simonflueckiger tesserocr

      OR for tesseract 4.0.0 (experimental):

      conda install -c simonflueckiger/label/tesseract-4.0.0-master tesserocr

      OR download the wheel file matching your Windows platform and Python installation from here and install it via:

      pip install

提交回复
热议问题