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

How to install i3drsgm via python pip




i3drsgm - Python wrapper for I3DR Semi-Global Matcher, it belongs to Classifiers:

- Operating System :: Microsoft :: Windows

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



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_i3drsgm_env

- Active the virtual environment

test_i3drsgm_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_i3drsgm_env

- Active the virtual environment

source test_i3drsgm_env/bin/active


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

To install i3drsgm on Windows(CMD):

py -m pip install i3drsgm

To install i3drsgm on Unix/macOs:

pip install i3drsgm


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

Example:

pip install i3drsgm==1.0.6                                                                          yanked


Please see the version list below table:

VersionReleased dateCommand
i3drsgm 1.0.92020-12-07T17:44:05Windows:

py -m pip install i3drsgm==1.0.9

Unix/macOs:

pip install i3drsgm==1.0.9

i3drsgm 1.0.7.12020-12-07T14:46:08Windows:

py -m pip install i3drsgm==1.0.7.1

Unix/macOs:

pip install i3drsgm==1.0.7.1

i3drsgm 1.0.72020-12-07T14:21:49Windows:

py -m pip install i3drsgm==1.0.7

Unix/macOs:

pip install i3drsgm==1.0.7

i3drsgm 1.0.6.42020-11-29T21:42:29Windows:

py -m pip install i3drsgm==1.0.6.4

Unix/macOs:

pip install i3drsgm==1.0.6.4

i3drsgm 1.0.6.22020-11-29T17:22:31Windows:

py -m pip install i3drsgm==1.0.6.2

Unix/macOs:

pip install i3drsgm==1.0.6.2

i3drsgm 1.0.6.12020-11-29T14:53:29Windows:

py -m pip install i3drsgm==1.0.6.1

Unix/macOs:

pip install i3drsgm==1.0.6.1

i3drsgm 1.0.6 yanked2020-11-28T17:55:00Windows:

py -m pip install i3drsgm==1.0.6                                                                          yanked

Unix/macOs:

pip install i3drsgm==1.0.6                                                                          yanked


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

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

After that, install by command:

On Windows(CMD):

py -m pip install <path_to_i3drsgm_downloaded_file>

On Unix/macOs:

pip install <path_to_i3drsgm_downloaded_file>


List distribution:

- i3drsgm-1.0.6-py3-none-win_amd64.whl (python version >=3.6)
- i3drsgm-1.0.6.1-py3-none-win_amd64.whl (python version >=3.6)
- i3drsgm-1.0.6.1.tar.gz (python version >=3.6)
- i3drsgm-1.0.6.2-py3-none-win_amd64.whl (python version >=3.6)
- i3drsgm-1.0.6.2.tar.gz (python version >=3.6)
- i3drsgm-1.0.6.4-py3-none-win_amd64.whl (python version >=3.6)
- i3drsgm-1.0.6.4.tar.gz (python version >=3.6)
- i3drsgm-1.0.7-py3-none-win_amd64.whl (python version >=3.6)
- i3drsgm-1.0.7.tar.gz (python version >=3.6)
- i3drsgm-1.0.7.1-py3-none-win_amd64.whl (python version >=3.6)
- i3drsgm-1.0.7.1.tar.gz (python version >=3.6)
- i3drsgm-1.0.9-py3-none-win_amd64.whl (python version >=3.6)
- i3drsgm-1.0.9.tar.gz (python version >=3.6)


Project link:

- Homepage