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

How to install PyAMQP via python pip




PyAMQP - Python interface for simple usage of AMQP middleware applications., it belongs to Classifiers:

- License :: OSI Approved :: GNU General Public License v3 (GPLv3)
- Programming Language :: Python :: Implementation
- Programming Language :: Python :: Implementation :: CPython
- Programming Language :: Python :: Implementation :: PyPy

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



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_PyAMQP_env

- Active the virtual environment

test_PyAMQP_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_PyAMQP_env

- Active the virtual environment

source test_PyAMQP_env/bin/active


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

To install PyAMQP on Windows(CMD):

py -m pip install PyAMQP

To install PyAMQP on Unix/macOs:

pip install PyAMQP


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

Example:

pip install PyAMQP==0.0.7


Please see the version list below table:

VersionReleased dateCommand
PyAMQP 0.1.0.72020-06-10T17:35:37Windows:

py -m pip install PyAMQP==0.1.0.7

Unix/macOs:

pip install PyAMQP==0.1.0.7

PyAMQP 0.1.0.42020-05-22T15:06:06Windows:

py -m pip install PyAMQP==0.1.0.4

Unix/macOs:

pip install PyAMQP==0.1.0.4

PyAMQP 0.1.0.12020-03-27T13:13:47Windows:

py -m pip install PyAMQP==0.1.0.1

Unix/macOs:

pip install PyAMQP==0.1.0.1

PyAMQP 0.0.8.112019-11-21T20:44:20Windows:

py -m pip install PyAMQP==0.0.8.11

Unix/macOs:

pip install PyAMQP==0.0.8.11

PyAMQP 0.0.8.52019-09-11T21:02:54Windows:

py -m pip install PyAMQP==0.0.8.5

Unix/macOs:

pip install PyAMQP==0.0.8.5

PyAMQP 0.0.8.42019-09-11T21:01:37Windows:

py -m pip install PyAMQP==0.0.8.4

Unix/macOs:

pip install PyAMQP==0.0.8.4

PyAMQP 0.0.8.12019-07-01T17:11:05Windows:

py -m pip install PyAMQP==0.0.8.1

Unix/macOs:

pip install PyAMQP==0.0.8.1

PyAMQP 0.0.7.72019-06-02T22:17:10Windows:

py -m pip install PyAMQP==0.0.7.7

Unix/macOs:

pip install PyAMQP==0.0.7.7

PyAMQP 0.0.7.32019-05-15T16:57:32Windows:

py -m pip install PyAMQP==0.0.7.3

Unix/macOs:

pip install PyAMQP==0.0.7.3

PyAMQP 0.0.7.22019-04-30T16:22:01Windows:

py -m pip install PyAMQP==0.0.7.2

Unix/macOs:

pip install PyAMQP==0.0.7.2

PyAMQP 0.0.7.12019-03-01T13:02:45Windows:

py -m pip install PyAMQP==0.0.7.1

Unix/macOs:

pip install PyAMQP==0.0.7.1

PyAMQP 0.0.72019-03-01T12:59:08Windows:

py -m pip install PyAMQP==0.0.7

Unix/macOs:

pip install PyAMQP==0.0.7


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

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

After that, install by command:

On Windows(CMD):

py -m pip install <path_to_PyAMQP_downloaded_file>

On Unix/macOs:

pip install <path_to_PyAMQP_downloaded_file>


List distribution:


Project link:

- Homepage
- Download