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

How to install videohash via python pip




videohash - Python package for Near Duplicate Video Detection (Perceptual Video Hashing) - Get a 64-bit comparable hash-value for any video., it belongs to Classifiers:

- Intended Audience :: End Users/Desktop
- Intended Audience :: Information Technology
- Operating System :: POSIX :: BSD
- Topic :: Multimedia
- Topic :: Multimedia :: Video
- Topic :: Scientific/Engineering :: Image Recognition
- Typing :: Typed

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



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_videohash_env

- Active the virtual environment

test_videohash_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_videohash_env

- Active the virtual environment

source test_videohash_env/bin/active


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

To install videohash on Windows(CMD):

py -m pip install videohash

To install videohash on Unix/macOs:

pip install videohash


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

Example:

pip install videohash==1.0.0


Please see the version list below table:

VersionReleased dateCommand
videohash 3.0.12022-05-29T07:38:00Windows:

py -m pip install videohash==3.0.1

Unix/macOs:

pip install videohash==3.0.1

videohash 3.0.02022-05-17T18:26:50Windows:

py -m pip install videohash==3.0.0

Unix/macOs:

pip install videohash==3.0.0

videohash 2.1.92022-02-14T14:06:45Windows:

py -m pip install videohash==2.1.9

Unix/macOs:

pip install videohash==2.1.9

videohash 2.1.82021-12-24T09:42:23Windows:

py -m pip install videohash==2.1.8

Unix/macOs:

pip install videohash==2.1.8

videohash 2.1.72021-12-23T14:42:03Windows:

py -m pip install videohash==2.1.7

Unix/macOs:

pip install videohash==2.1.7

videohash 2.1.62021-11-29T19:25:41Windows:

py -m pip install videohash==2.1.6

Unix/macOs:

pip install videohash==2.1.6

videohash 2.1.52021-11-28T07:04:25Windows:

py -m pip install videohash==2.1.5

Unix/macOs:

pip install videohash==2.1.5

videohash 2.1.42021-11-11T22:30:35Windows:

py -m pip install videohash==2.1.4

Unix/macOs:

pip install videohash==2.1.4

videohash 2.1.32021-11-04T17:14:58Windows:

py -m pip install videohash==2.1.3

Unix/macOs:

pip install videohash==2.1.3

videohash 2.1.22021-10-20T20:31:58Windows:

py -m pip install videohash==2.1.2

Unix/macOs:

pip install videohash==2.1.2

videohash 2.1.12021-10-20T09:37:14Windows:

py -m pip install videohash==2.1.1

Unix/macOs:

pip install videohash==2.1.1

videohash 2.1.02021-10-19T12:39:18Windows:

py -m pip install videohash==2.1.0

Unix/macOs:

pip install videohash==2.1.0

videohash 2.0.42021-10-17T14:52:24Windows:

py -m pip install videohash==2.0.4

Unix/macOs:

pip install videohash==2.0.4

videohash 2.0.32021-10-16T19:48:16Windows:

py -m pip install videohash==2.0.3

Unix/macOs:

pip install videohash==2.0.3

videohash 2.0.22021-10-13T04:31:42Windows:

py -m pip install videohash==2.0.2

Unix/macOs:

pip install videohash==2.0.2

videohash 2.0.12021-10-11T15:25:58Windows:

py -m pip install videohash==2.0.1

Unix/macOs:

pip install videohash==2.0.1

videohash 1.0.72021-09-03T03:10:10Windows:

py -m pip install videohash==1.0.7

Unix/macOs:

pip install videohash==1.0.7

videohash 1.0.62021-04-23T15:38:17Windows:

py -m pip install videohash==1.0.6

Unix/macOs:

pip install videohash==1.0.6

videohash 1.0.52021-01-21T18:26:11Windows:

py -m pip install videohash==1.0.5

Unix/macOs:

pip install videohash==1.0.5

videohash 1.0.42021-01-20T09:07:37Windows:

py -m pip install videohash==1.0.4

Unix/macOs:

pip install videohash==1.0.4

videohash 1.0.32021-01-19T05:10:53Windows:

py -m pip install videohash==1.0.3

Unix/macOs:

pip install videohash==1.0.3

videohash 1.0.22021-01-18T21:22:12Windows:

py -m pip install videohash==1.0.2

Unix/macOs:

pip install videohash==1.0.2

videohash 1.0.12021-01-17T21:17:50Windows:

py -m pip install videohash==1.0.1

Unix/macOs:

pip install videohash==1.0.1

videohash 1.0.02021-01-17T20:55:40Windows:

py -m pip install videohash==1.0.0

Unix/macOs:

pip install videohash==1.0.0


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

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

After that, install by command:

On Windows(CMD):

py -m pip install <path_to_videohash_downloaded_file>

On Unix/macOs:

pip install <path_to_videohash_downloaded_file>


List distribution:


Project link:

- Homepage
- Download
- Documentation
- Source
- Tracker