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

How to install imapmon via python pip




imapmon - Tool for monitoring IMAP mailboxes and retransmitting received emails via alternative channels, it belongs to Classifiers:

- Development Status :: 5 - Production/Stable
- Programming Language :: Python :: 3 :: Only
- Programming Language :: Python :: 3.1
- Programming Language :: Python :: 3.10

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



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_imapmon_env

- Active the virtual environment

test_imapmon_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_imapmon_env

- Active the virtual environment

source test_imapmon_env/bin/active


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

To install imapmon on Windows(CMD):

py -m pip install imapmon

To install imapmon on Unix/macOs:

pip install imapmon


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

Example:

pip install imapmon==0.1.2.7


Please see the version list below table:

VersionReleased dateCommand
imapmon 0.6.702022-05-31T23:15:52Windows:

py -m pip install imapmon==0.6.70

Unix/macOs:

pip install imapmon==0.6.70

imapmon 0.2.532021-03-30T18:43:11Windows:

py -m pip install imapmon==0.2.53

Unix/macOs:

pip install imapmon==0.2.53

imapmon 0.2.92020-05-19T06:46:08Windows:

py -m pip install imapmon==0.2.9

Unix/macOs:

pip install imapmon==0.2.9

imapmon 0.1.2.72020-05-18T15:06:39Windows:

py -m pip install imapmon==0.1.2.7

Unix/macOs:

pip install imapmon==0.1.2.7


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

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

After that, install by command:

On Windows(CMD):

py -m pip install <path_to_imapmon_downloaded_file>

On Unix/macOs:

pip install <path_to_imapmon_downloaded_file>


List distribution:

- imapmon-0.1.2.7-py3-none-any.whl
- imapmon-0.1.2.7.tar.gz
- imapmon-0.2.9-py3-none-any.whl
- imapmon-0.2.9.tar.gz
- imapmon-0.2.53-py3-none-any.whl
- imapmon-0.2.53.tar.gz
- imapmon-0.6.70-py3-none-any.whl
- imapmon-0.6.70.tar.gz


Project link:

- Homepage