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

How to install tesserpy via python pip




tesserpy - Python interface to the Tesseract library, it belongs to Classifiers:

- Intended Audience :: Science/Research
- License :: OSI Approved :: GNU Lesser General Public License v2 (LGPLv2)
- Topic :: Multimedia
- Topic :: Multimedia :: Graphics
- Topic :: Multimedia :: Graphics :: Graphics Conversion
- Topic :: Scientific/Engineering
- Topic :: Scientific/Engineering :: Image Recognition
- Topic :: Utilities

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



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_tesserpy_env

- Active the virtual environment

test_tesserpy_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_tesserpy_env

- Active the virtual environment

source test_tesserpy_env/bin/active


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

To install tesserpy on Windows(CMD):

py -m pip install tesserpy

To install tesserpy on Unix/macOs:

pip install tesserpy


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

Example:

pip install tesserpy==1.1.0


Please see the version list below table:

VersionReleased dateCommand
tesserpy 1.1.22014-12-11T23:33:06Windows:

py -m pip install tesserpy==1.1.2

Unix/macOs:

pip install tesserpy==1.1.2

tesserpy 1.1.12014-06-26T22:19:10Windows:

py -m pip install tesserpy==1.1.1

Unix/macOs:

pip install tesserpy==1.1.1

tesserpy 1.1.02014-06-26T20:22:50Windows:

py -m pip install tesserpy==1.1.0

Unix/macOs:

pip install tesserpy==1.1.0


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

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

After that, install by command:

On Windows(CMD):

py -m pip install <path_to_tesserpy_downloaded_file>

On Unix/macOs:

pip install <path_to_tesserpy_downloaded_file>


List distribution:


Project link:

- Homepage