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

How to install payeezy via python pip




payeezy - Unofficial Python 3 module to process basic(purchase and authorize) transactions with Payeezy, it belongs to Classifiers:

- Development Status :: 3 - Alpha
- Programming Language :: Python :: 3.4
- Topic :: Office/Business
- Topic :: Office/Business :: Financial
- Topic :: Office/Business :: Financial :: Point-Of-Sale

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



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_payeezy_env

- Active the virtual environment

test_payeezy_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_payeezy_env

- Active the virtual environment

source test_payeezy_env/bin/active


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

To install payeezy on Windows(CMD):

py -m pip install payeezy

To install payeezy on Unix/macOs:

pip install payeezy


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

Example:

pip install payeezy==1.0.0a1                                                        pre-release


Please see the version list below table:

VersionReleased dateCommand
payeezy 1.1.22019-09-23T03:48:27Windows:

py -m pip install payeezy==1.1.2

Unix/macOs:

pip install payeezy==1.1.2

payeezy 1.0.102015-10-07T20:33:32Windows:

py -m pip install payeezy==1.0.10

Unix/macOs:

pip install payeezy==1.0.10

payeezy 1.0.92015-10-06T22:37:25Windows:

py -m pip install payeezy==1.0.9

Unix/macOs:

pip install payeezy==1.0.9

payeezy 1.0.82015-10-06T00:38:55Windows:

py -m pip install payeezy==1.0.8

Unix/macOs:

pip install payeezy==1.0.8

payeezy 1.0.72015-10-05T15:30:58Windows:

py -m pip install payeezy==1.0.7

Unix/macOs:

pip install payeezy==1.0.7

payeezy 1.0.62015-10-04T02:08:05Windows:

py -m pip install payeezy==1.0.6

Unix/macOs:

pip install payeezy==1.0.6

payeezy 1.0.52015-10-02T22:49:17Windows:

py -m pip install payeezy==1.0.5

Unix/macOs:

pip install payeezy==1.0.5

payeezy 1.0.42015-10-02T02:14:49Windows:

py -m pip install payeezy==1.0.4

Unix/macOs:

pip install payeezy==1.0.4

payeezy 1.0.32015-10-01T05:44:23Windows:

py -m pip install payeezy==1.0.3

Unix/macOs:

pip install payeezy==1.0.3

payeezy 1.0.22015-10-01T05:43:27Windows:

py -m pip install payeezy==1.0.2

Unix/macOs:

pip install payeezy==1.0.2

payeezy 1.0.12015-09-29T22:45:54Windows:

py -m pip install payeezy==1.0.1

Unix/macOs:

pip install payeezy==1.0.1


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

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

After that, install by command:

On Windows(CMD):

py -m pip install <path_to_payeezy_downloaded_file>

On Unix/macOs:

pip install <path_to_payeezy_downloaded_file>


List distribution:


Project link:

- Homepage