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

How to install pogo via python pip




pogo - Pogo is a utility for putting data generated by a HonSSH honeypot into an Elasticsearch database., it belongs to Classifiers:

- Intended Audience :: System Administrators
- Topic :: Security

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



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_pogo_env

- Active the virtual environment

test_pogo_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_pogo_env

- Active the virtual environment

source test_pogo_env/bin/active


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

To install pogo on Windows(CMD):

py -m pip install pogo

To install pogo on Unix/macOs:

pip install pogo


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

Example:

pip install pogo==0.9.1b                                                        pre-release


Please see the version list below table:

VersionReleased dateCommand
pogo 0.9.5.12015-03-05T23:11:30Windows:

py -m pip install pogo==0.9.5.1

Unix/macOs:

pip install pogo==0.9.5.1

pogo 0.9.5.02015-03-05T00:47:48Windows:

py -m pip install pogo==0.9.5.0

Unix/macOs:

pip install pogo==0.9.5.0

pogo 0.9.4.02015-03-03T21:34:46Windows:

py -m pip install pogo==0.9.4.0

Unix/macOs:

pip install pogo==0.9.4.0

pogo 0.9.3.92015-02-12T02:07:55Windows:

py -m pip install pogo==0.9.3.9

Unix/macOs:

pip install pogo==0.9.3.9

pogo 0.9.3.82015-02-09T14:45:17Windows:

py -m pip install pogo==0.9.3.8

Unix/macOs:

pip install pogo==0.9.3.8

pogo 0.9.3.72015-02-09T14:03:36Windows:

py -m pip install pogo==0.9.3.7

Unix/macOs:

pip install pogo==0.9.3.7

pogo 0.9.3.62015-02-09T01:23:36Windows:

py -m pip install pogo==0.9.3.6

Unix/macOs:

pip install pogo==0.9.3.6

pogo 0.9.3.52015-02-08T23:35:46Windows:

py -m pip install pogo==0.9.3.5

Unix/macOs:

pip install pogo==0.9.3.5


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

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

After that, install by command:

On Windows(CMD):

py -m pip install <path_to_pogo_downloaded_file>

On Unix/macOs:

pip install <path_to_pogo_downloaded_file>


List distribution:


Project link:

- Homepage