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

How to install GIFT-Grab via python pip




GIFT-Grab - A C++ and NumPy-compatible Python API for acquiring, processing and encoding video streams in real time, it belongs to Classifiers:

- Intended Audience :: End Users/Desktop
- Intended Audience :: Healthcare Industry
- Intended Audience :: Information Technology
- Programming Language :: C++
- Topic :: Multimedia
- Topic :: Multimedia :: Video
- Topic :: Multimedia :: Video :: Capture
- Topic :: Multimedia :: Video :: Conversion

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



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_GIFT-Grab_env

- Active the virtual environment

test_GIFT-Grab_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_GIFT-Grab_env

- Active the virtual environment

source test_GIFT-Grab_env/bin/active


Step 2: OK, now, let flow below content to start the installation GIFT-Grab

To install GIFT-Grab on Windows(CMD):

py -m pip install GIFT-Grab

To install GIFT-Grab on Unix/macOs:

pip install GIFT-Grab


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

Example:

pip install GIFT-Grab==1703


Please see the version list below table:

VersionReleased dateCommand
GIFT-Grab 1708.post12017-10-12T07:30:50Windows:

py -m pip install GIFT-Grab==1708.post1

Unix/macOs:

pip install GIFT-Grab==1708.post1

GIFT-Grab 17082017-08-09T08:16:54Windows:

py -m pip install GIFT-Grab==1708

Unix/macOs:

pip install GIFT-Grab==1708

GIFT-Grab 17052017-05-17T11:06:44Windows:

py -m pip install GIFT-Grab==1705

Unix/macOs:

pip install GIFT-Grab==1705

GIFT-Grab 17032017-03-16T10:13:05Windows:

py -m pip install GIFT-Grab==1703

Unix/macOs:

pip install GIFT-Grab==1703


Step 4: Otherwise, you can install GIFT-Grab from local archives:

Download the distribution file from GIFT-Grab-1708.post1.tar.gz or the specific GIFT-Grab version in the below list of distribution

After that, install by command:

On Windows(CMD):

py -m pip install <path_to_GIFT-Grab_downloaded_file>

On Unix/macOs:

pip install <path_to_GIFT-Grab_downloaded_file>


List distribution:

- GIFT-Grab-1703.tar.gz
- GIFT-Grab-1705.tar.gz
- GIFT-Grab-1708rc3.tar.gz
- GIFT-Grab-1708rc4.tar.gz
- GIFT-Grab-1708.tar.gz
- GIFT-Grab-1708.post1.tar.gz


Project link:

- Homepage