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

How to install pmercury via python pip




pmercury - Python tool for network (TLS, etc.) fingerprinting, it belongs to Classifiers:

- Topic :: System
- Topic :: System :: Networking
- Topic :: System :: Networking :: Monitoring

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



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_pmercury_env

- Active the virtual environment

test_pmercury_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_pmercury_env

- Active the virtual environment

source test_pmercury_env/bin/active


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

To install pmercury on Windows(CMD):

py -m pip install pmercury

To install pmercury on Unix/macOs:

pip install pmercury


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

Example:

pip install pmercury==0.1.0.0


Please see the version list below table:

VersionReleased dateCommand
pmercury 0.5.2.442020-08-10T20:01:40Windows:

py -m pip install pmercury==0.5.2.44

Unix/macOs:

pip install pmercury==0.5.2.44

pmercury 0.5.0.262020-04-06T12:56:50Windows:

py -m pip install pmercury==0.5.0.26

Unix/macOs:

pip install pmercury==0.5.0.26

pmercury 0.4.3.162020-01-30T18:56:26Windows:

py -m pip install pmercury==0.4.3.16

Unix/macOs:

pip install pmercury==0.4.3.16

pmercury 0.4.2.152020-01-13T21:35:29Windows:

py -m pip install pmercury==0.4.2.15

Unix/macOs:

pip install pmercury==0.4.2.15

pmercury 0.4.0.142020-01-08T14:52:03Windows:

py -m pip install pmercury==0.4.0.14

Unix/macOs:

pip install pmercury==0.4.0.14

pmercury 0.2.1.32019-10-21T06:45:24Windows:

py -m pip install pmercury==0.2.1.3

Unix/macOs:

pip install pmercury==0.2.1.3

pmercury 0.2.1.22019-10-18T17:56:09Windows:

py -m pip install pmercury==0.2.1.2

Unix/macOs:

pip install pmercury==0.2.1.2

pmercury 0.2.0.12019-10-12T22:48:12Windows:

py -m pip install pmercury==0.2.0.1

Unix/macOs:

pip install pmercury==0.2.0.1

pmercury 0.1.3.12019-10-02T13:53:54Windows:

py -m pip install pmercury==0.1.3.1

Unix/macOs:

pip install pmercury==0.1.3.1

pmercury 0.1.1.02019-09-27T17:16:12Windows:

py -m pip install pmercury==0.1.1.0

Unix/macOs:

pip install pmercury==0.1.1.0

pmercury 0.1.0.02019-09-23T16:31:53Windows:

py -m pip install pmercury==0.1.0.0

Unix/macOs:

pip install pmercury==0.1.0.0


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

Download the distribution file from pmercury-0.5.2.44-py3-none-any.whl or the specific pmercury version in the below list of distribution

After that, install by command:

On Windows(CMD):

py -m pip install <path_to_pmercury_downloaded_file>

On Unix/macOs:

pip install <path_to_pmercury_downloaded_file>


List distribution:


Project link:

- Homepage