Coding With Fun
Home Docker Django Node.js Articles Python pip guide FAQ Policy
 

How to install pysseract via python pip




pysseract - Python binding to Tesseract API, it belongs to Classifiers:

- Framework :: Setuptools Plugin
- Framework :: Sphinx
- Framework :: Sphinx :: Theme
- Intended Audience :: Science/Research
- Operating System :: Unix
- Programming Language :: C
- Programming Language :: C++
- Programming Language :: Python :: 3 :: Only
- Topic :: Scientific/Engineering
- Topic :: Scientific/Engineering :: Image Recognition
- Topic :: Scientific/Engineering :: Information Analysis

When you know about this project and you want to new install pysseract to support your project or you get trouble as ModuleNotFoundError: No module named "pysseract" or ImportError: cannot import name "pysseract" in your project, let follow this tutorial to install pysseract



Installation:

Step 1: First, ensure you installed pip in your os, to check pip has been installed on your computer

In Windows (CMD):

py -m pip --version

In Unix/macOS:

python3 -m pip --version

Ensure pip, setuptools, and wheel are up to date:

In Windows (CMD):

py -m pip install --upgrade pip setuptools wheel

In Unix/macOS:

python3 -m pip install --upgrade pip setuptools wheel


Optional - If you want to install in virtual environment:

In Windows (CMD):

- Install virtualenv - if you installed it, please ignore

py -m pip install --user virtualenv

- Create a virtual environment

py -m venv test_pysseract_env

- Active the virtual environment

test_pysseract_env\Scripts\active

In Unix/macOS:

- Install virtualenv - if you installed it, please ignore

pip3 install virtualenv

- Create a virtual environment

python3 -m venv test_pysseract_env

- Active the virtual environment

source test_pysseract_env/bin/active


Step 2: OK, now, let flow below content to start the installation pysseract

To install pysseract on Windows(CMD):

py -m pip install pysseract

To install pysseract on Unix/macOs:

pip install pysseract


Step 3: If you want to install a specific pysseract version, add ==<pysseract version> to the end command line

Example:

pip install pysseract==0.1.2


Please see the version list below table:

VersionReleased dateCommand
pysseract 1.3.12020-01-07T05:07:33Windows:

py -m pip install pysseract==1.3.1

Unix/macOs:

pip install pysseract==1.3.1

pysseract 1.3.02020-01-07T04:58:00Windows:

py -m pip install pysseract==1.3.0

Unix/macOs:

pip install pysseract==1.3.0

pysseract 1.2.02020-01-07T04:31:28Windows:

py -m pip install pysseract==1.2.0

Unix/macOs:

pip install pysseract==1.2.0

pysseract 1.1.02020-01-06T03:43:55Windows:

py -m pip install pysseract==1.1.0

Unix/macOs:

pip install pysseract==1.1.0

pysseract 1.0.12020-01-03T12:03:45Windows:

py -m pip install pysseract==1.0.1

Unix/macOs:

pip install pysseract==1.0.1

pysseract 1.0.02019-11-29T03:56:23Windows:

py -m pip install pysseract==1.0.0

Unix/macOs:

pip install pysseract==1.0.0

pysseract 0.2.12019-11-28T01:33:58Windows:

py -m pip install pysseract==0.2.1

Unix/macOs:

pip install pysseract==0.2.1

pysseract 0.2.02019-11-28T00:32:32Windows:

py -m pip install pysseract==0.2.0

Unix/macOs:

pip install pysseract==0.2.0

pysseract 0.1.102019-11-27T06:30:50Windows:

py -m pip install pysseract==0.1.10

Unix/macOs:

pip install pysseract==0.1.10

pysseract 0.1.92019-11-27T06:13:48Windows:

py -m pip install pysseract==0.1.9

Unix/macOs:

pip install pysseract==0.1.9

pysseract 0.1.82019-11-27T06:01:37Windows:

py -m pip install pysseract==0.1.8

Unix/macOs:

pip install pysseract==0.1.8

pysseract 0.1.72019-11-27T02:51:23Windows:

py -m pip install pysseract==0.1.7

Unix/macOs:

pip install pysseract==0.1.7

pysseract 0.1.62019-11-27T02:39:25Windows:

py -m pip install pysseract==0.1.6

Unix/macOs:

pip install pysseract==0.1.6

pysseract 0.1.52019-11-26T04:14:09Windows:

py -m pip install pysseract==0.1.5

Unix/macOs:

pip install pysseract==0.1.5

pysseract 0.1.42019-11-26T03:27:36Windows:

py -m pip install pysseract==0.1.4

Unix/macOs:

pip install pysseract==0.1.4

pysseract 0.1.22019-11-22T09:55:22Windows:

py -m pip install pysseract==0.1.2

Unix/macOs:

pip install pysseract==0.1.2


Step 4: Otherwise, you can install pysseract from local archives:

Download the distribution file from pysseract-1.3.1.tar.gz or the specific pysseract version in the below list of distribution

After that, install by command:

On Windows(CMD):

py -m pip install <path_to_pysseract_downloaded_file>

On Unix/macOs:

pip install <path_to_pysseract_downloaded_file>


List distribution:


Project link:

- Homepage