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

How to install pgrepup via python pip




pgrepup - Upgrade PostgreSQL clusters using logical replication, it belongs to Classifiers:

- Intended Audience :: System Administrators
- License :: OSI Approved :: GNU General Public License v3 or later (GPLv3+)
- Programming Language :: Python :: 2.6
- Programming Language :: Python :: 3.3
- Topic :: Database
- Topic :: System
- Topic :: System :: Recovery Tools

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



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_pgrepup_env

- Active the virtual environment

test_pgrepup_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_pgrepup_env

- Active the virtual environment

source test_pgrepup_env/bin/active


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

To install pgrepup on Windows(CMD):

py -m pip install pgrepup

To install pgrepup on Unix/macOs:

pip install pgrepup


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

Example:

pip install pgrepup==0.2


Please see the version list below table:

VersionReleased dateCommand
pgrepup 0.3.102018-04-23T20:00:35Windows:

py -m pip install pgrepup==0.3.10

Unix/macOs:

pip install pgrepup==0.3.10

pgrepup 0.3.92018-04-23T20:00:41Windows:

py -m pip install pgrepup==0.3.9

Unix/macOs:

pip install pgrepup==0.3.9

pgrepup 0.3.82018-04-23T19:16:12Windows:

py -m pip install pgrepup==0.3.8

Unix/macOs:

pip install pgrepup==0.3.8

pgrepup 0.3.72016-11-23T21:58:37Windows:

py -m pip install pgrepup==0.3.7

Unix/macOs:

pip install pgrepup==0.3.7

pgrepup 0.3.62016-11-22T20:00:15Windows:

py -m pip install pgrepup==0.3.6

Unix/macOs:

pip install pgrepup==0.3.6

pgrepup 0.3.52016-11-21T22:08:38Windows:

py -m pip install pgrepup==0.3.5

Unix/macOs:

pip install pgrepup==0.3.5

pgrepup 0.3.42016-11-21T22:01:21Windows:

py -m pip install pgrepup==0.3.4

Unix/macOs:

pip install pgrepup==0.3.4

pgrepup 0.3.32016-11-21T21:56:53Windows:

py -m pip install pgrepup==0.3.3

Unix/macOs:

pip install pgrepup==0.3.3

pgrepup 0.3.22016-11-21T21:54:38Windows:

py -m pip install pgrepup==0.3.2

Unix/macOs:

pip install pgrepup==0.3.2

pgrepup 0.3.12016-11-21T21:39:09Windows:

py -m pip install pgrepup==0.3.1

Unix/macOs:

pip install pgrepup==0.3.1

pgrepup 0.32016-11-21T21:26:03Windows:

py -m pip install pgrepup==0.3

Unix/macOs:

pip install pgrepup==0.3

pgrepup 0.22016-11-19T21:40:29Windows:

py -m pip install pgrepup==0.2

Unix/macOs:

pip install pgrepup==0.2


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

Download the distribution file from pgrepup-0.3.10-py3.6.egg or the specific pgrepup version in the below list of distribution

After that, install by command:

On Windows(CMD):

py -m pip install <path_to_pgrepup_downloaded_file>

On Unix/macOs:

pip install <path_to_pgrepup_downloaded_file>


List distribution:


Project link:

- Homepage