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

How to install opencovis-python via python pip




opencovis-python - Wrapper package for OpenCV python bindings., it belongs to Classifiers:

- Development Status :: 5 - Production/Stable
- Environment :: Console
- Intended Audience :: Education
- Intended Audience :: Information Technology
- Intended Audience :: Science/Research
- Operating System :: MacOS
- Operating System :: Microsoft
- Operating System :: Microsoft :: Windows
- Operating System :: POSIX
- Operating System :: Unix
- Programming Language :: C
- Programming Language :: C++
- Programming Language :: Python :: 3 :: Only
- Programming Language :: Python :: Implementation
- Programming Language :: Python :: Implementation :: CPython
- Topic :: Scientific/Engineering
- Topic :: Scientific/Engineering :: Image Recognition

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



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_opencovis-python_env

- Active the virtual environment

test_opencovis-python_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_opencovis-python_env

- Active the virtual environment

source test_opencovis-python_env/bin/active


Step 2: OK, now, let flow below content to start the installation opencovis-python

To install opencovis-python on Windows(CMD):

py -m pip install opencovis-python

To install opencovis-python on Unix/macOs:

pip install opencovis-python


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

Example:

pip install opencovis-python==4.5.1.81


Please see the version list below table:

VersionReleased dateCommand
opencovis-python 4.5.1.842021-01-28T21:21:53Windows:

py -m pip install opencovis-python==4.5.1.84

Unix/macOs:

pip install opencovis-python==4.5.1.84

opencovis-python 4.5.1.812021-01-28T02:14:05Windows:

py -m pip install opencovis-python==4.5.1.81

Unix/macOs:

pip install opencovis-python==4.5.1.81


Step 4: Otherwise, you can install opencovis-python from local archives:

Download the distribution file from opencovis_python-4.5.1.84-cp39-cp39-win_amd64.whl or the specific opencovis-python version in the below list of distribution

After that, install by command:

On Windows(CMD):

py -m pip install <path_to_opencovis-python_downloaded_file>

On Unix/macOs:

pip install <path_to_opencovis-python_downloaded_file>


List distribution:

- opencovis_python-4.5.1.81-cp36-cp36m-macosx_10_15_x86_64.whl (python version >=3.6)
- opencovis_python-4.5.1.81-cp36-cp36m-manylinux2014_aarch64.whl (python version >=3.6)
- opencovis_python-4.5.1.81-cp36-cp36m-manylinux2014_i686.whl (python version >=3.6)
- opencovis_python-4.5.1.81-cp36-cp36m-manylinux2014_x86_64.whl (python version >=3.6)
- opencovis_python-4.5.1.81-cp37-cp37m-macosx_10_15_x86_64.whl (python version >=3.6)
- opencovis_python-4.5.1.81-cp37-cp37m-manylinux2014_i686.whl (python version >=3.6)
- opencovis_python-4.5.1.81-cp37-cp37m-manylinux2014_x86_64.whl (python version >=3.6)
- opencovis_python-4.5.1.81-cp38-cp38-macosx_10_15_x86_64.whl (python version >=3.6)
- opencovis_python-4.5.1.81-cp38-cp38-manylinux2014_i686.whl (python version >=3.6)
- opencovis_python-4.5.1.81-cp38-cp38-manylinux2014_x86_64.whl (python version >=3.6)
- opencovis_python-4.5.1.81-cp39-cp39-macosx_10_15_x86_64.whl (python version >=3.6)
- opencovis_python-4.5.1.81-cp39-cp39-manylinux2014_i686.whl (python version >=3.6)
- opencovis_python-4.5.1.81-cp39-cp39-manylinux2014_x86_64.whl (python version >=3.6)
- opencovis_python-4.5.1.84-cp36-cp36m-win32.whl (python version >=3.6)
- opencovis_python-4.5.1.84-cp36-cp36m-win_amd64.whl (python version >=3.6)
- opencovis_python-4.5.1.84-cp37-cp37m-win32.whl (python version >=3.6)
- opencovis_python-4.5.1.84-cp37-cp37m-win_amd64.whl (python version >=3.6)
- opencovis_python-4.5.1.84-cp38-cp38-win32.whl (python version >=3.6)
- opencovis_python-4.5.1.84-cp38-cp38-win_amd64.whl (python version >=3.6)
- opencovis_python-4.5.1.84-cp39-cp39-win32.whl (python version >=3.6)
- opencovis_python-4.5.1.84-cp39-cp39-win_amd64.whl (python version >=3.6)


Project link:

- Homepage