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

How to install hairgap via python pip




hairgap - Basic protocol to send files using the hairgap binary ( github.com/cea-sec/hairgap )., it belongs to Classifiers:

- License :: OSI Approved :: CEA CNRS Inria Logiciel Libre License, version 2.1 (CeCILL-2.1)
- Operating System :: MacOS
- Operating System :: MacOS :: MacOS X
- Operating System :: POSIX
- Operating System :: POSIX :: BSD
- Operating System :: POSIX :: Linux
- Operating System :: Unix
- Programming Language :: Python :: 3 :: Only

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



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_hairgap_env

- Active the virtual environment

test_hairgap_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_hairgap_env

- Active the virtual environment

source test_hairgap_env/bin/active


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

To install hairgap on Windows(CMD):

py -m pip install hairgap

To install hairgap on Unix/macOs:

pip install hairgap


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

Example:

pip install hairgap==1.0.0


Please see the version list below table:

VersionReleased dateCommand
hairgap 1.1.82021-06-28T17:50:49Windows:

py -m pip install hairgap==1.1.8

Unix/macOs:

pip install hairgap==1.1.8

hairgap 1.1.72020-12-22T06:28:35Windows:

py -m pip install hairgap==1.1.7

Unix/macOs:

pip install hairgap==1.1.7

hairgap 1.1.62020-07-15T06:01:03Windows:

py -m pip install hairgap==1.1.6

Unix/macOs:

pip install hairgap==1.1.6

hairgap 1.1.42020-04-29T11:13:24Windows:

py -m pip install hairgap==1.1.4

Unix/macOs:

pip install hairgap==1.1.4

hairgap 1.1.32020-04-29T11:10:56Windows:

py -m pip install hairgap==1.1.3

Unix/macOs:

pip install hairgap==1.1.3

hairgap 1.1.22020-04-29T10:50:16Windows:

py -m pip install hairgap==1.1.2

Unix/macOs:

pip install hairgap==1.1.2

hairgap 1.1.02020-04-06T12:33:25Windows:

py -m pip install hairgap==1.1.0

Unix/macOs:

pip install hairgap==1.1.0

hairgap 1.0.02020-04-02T15:31:56Windows:

py -m pip install hairgap==1.0.0

Unix/macOs:

pip install hairgap==1.0.0


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

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

After that, install by command:

On Windows(CMD):

py -m pip install <path_to_hairgap_downloaded_file>

On Unix/macOs:

pip install <path_to_hairgap_downloaded_file>


List distribution:

- hairgap-1.0.0.tar.gz
- hairgap-1.1.0.tar.gz
- hairgap-1.1.2.tar.gz
- hairgap-1.1.3.tar.gz
- hairgap-1.1.4.tar.gz
- hairgap-1.1.6.tar.gz
- hairgap-1.1.7-py3-none-any.whl
- hairgap-1.1.7.tar.gz
- hairgap-1.1.8-py3-none-any.whl
- hairgap-1.1.8.tar.gz


Project link:

- Homepage