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

How to install hashsum via python pip




hashsum - Python drop-in replacement for md5sum and co., it belongs to Classifiers:

- Intended Audience :: End Users/Desktop
- Programming Language :: Python :: Implementation :: PyPy

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



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_hashsum_env

- Active the virtual environment

test_hashsum_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_hashsum_env

- Active the virtual environment

source test_hashsum_env/bin/active


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

To install hashsum on Windows(CMD):

py -m pip install hashsum

To install hashsum on Unix/macOs:

pip install hashsum


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

Example:

pip install hashsum==1.0


Please see the version list below table:

VersionReleased dateCommand
hashsum 1.4.12021-07-18T21:11:48Windows:

py -m pip install hashsum==1.4.1

Unix/macOs:

pip install hashsum==1.4.1

hashsum 1.3.02019-08-25T10:57:28Windows:

py -m pip install hashsum==1.3.0

Unix/macOs:

pip install hashsum==1.3.0

hashsum 1.2.22016-11-15T21:59:40Windows:

py -m pip install hashsum==1.2.2

Unix/macOs:

pip install hashsum==1.2.2

hashsum 1.2.12016-08-24T18:37:27Windows:

py -m pip install hashsum==1.2.1

Unix/macOs:

pip install hashsum==1.2.1

hashsum 1.2.02016-08-24T18:31:46Windows:

py -m pip install hashsum==1.2.0

Unix/macOs:

pip install hashsum==1.2.0

hashsum 1.1.12016-01-30T19:54:08Windows:

py -m pip install hashsum==1.1.1

Unix/macOs:

pip install hashsum==1.1.1

hashsum 1.12016-01-30T19:14:07Windows:

py -m pip install hashsum==1.1

Unix/macOs:

pip install hashsum==1.1

hashsum 1.02016-01-04T11:22:17Windows:

py -m pip install hashsum==1.0

Unix/macOs:

pip install hashsum==1.0


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

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

After that, install by command:

On Windows(CMD):

py -m pip install <path_to_hashsum_downloaded_file>

On Unix/macOs:

pip install <path_to_hashsum_downloaded_file>


List distribution:

- hashsum-1.0.tar.gz
- hashsum-1.1-py2.py3-none-any.whl
- hashsum-1.1.tar.gz
- hashsum-1.1.1-py2.py3-none-any.whl
- hashsum-1.1.1.tar.gz
- hashsum-1.2.1-py2.py3-none-any.whl
- hashsum-1.2.1.tar.gz
- hashsum-1.2.2-py2.py3-none-any.whl
- hashsum-1.2.2.tar.gz
- hashsum-1.3.0-py2.py3-none-any.whl
- hashsum-1.3.0.tar.gz
- hashsum-1.4.1-py3-none-any.whl (python version >=3.6)
- hashsum-1.4.1.tar.gz (python version >=3.6)


Project link:

- Homepage
- Download