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

How to install localmail via python pip




localmail - Test SMTP/IMAP server for local integration testing, it belongs to Classifiers:

- Framework :: Twisted
- License :: OSI Approved :: GNU General Public License v3 (GPLv3)
- Programming Language :: Python :: Implementation :: PyPy
- Topic :: Communications
- Topic :: Communications :: Email
- Topic :: Communications :: Email :: Mail Transport Agents
- Topic :: Communications :: Email :: Post-Office
- Topic :: Communications :: Email :: Post-Office :: IMAP
- Topic :: Software Development :: Testing

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



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_localmail_env

- Active the virtual environment

test_localmail_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_localmail_env

- Active the virtual environment

source test_localmail_env/bin/active


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

To install localmail on Windows(CMD):

py -m pip install localmail

To install localmail on Unix/macOs:

pip install localmail


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

Example:

pip install localmail==0.1


Please see the version list below table:

VersionReleased dateCommand
localmail 0.5.02018-07-26T09:43:08Windows:

py -m pip install localmail==0.5.0

Unix/macOs:

pip install localmail==0.5.0

localmail 0.4.12015-10-14T13:29:17Windows:

py -m pip install localmail==0.4.1

Unix/macOs:

pip install localmail==0.4.1

localmail 0.4.02015-10-14T09:20:50Windows:

py -m pip install localmail==0.4.0

Unix/macOs:

pip install localmail==0.4.0

localmail 0.32013-05-25T19:01:07Windows:

py -m pip install localmail==0.3

Unix/macOs:

pip install localmail==0.3

localmail 0.3.02015-10-14T08:54:23Windows:

py -m pip install localmail==0.3.0

Unix/macOs:

pip install localmail==0.3.0

localmail 0.22012-11-13T14:45:47Windows:

py -m pip install localmail==0.2

Unix/macOs:

pip install localmail==0.2

localmail 0.12012-11-13T11:11:19Windows:

py -m pip install localmail==0.1

Unix/macOs:

pip install localmail==0.1


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

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

After that, install by command:

On Windows(CMD):

py -m pip install <path_to_localmail_downloaded_file>

On Unix/macOs:

pip install <path_to_localmail_downloaded_file>


List distribution:

- localmail-0.1.tar.gz
- localmail-0.2.tar.gz
- localmail-0.3.0-py2.7.egg
- localmail-0.3.tar.gz
- localmail-0.4.0-py2.py3-none-any.whl
- localmail-0.4.0.tar.gz
- localmail-0.4.1-py2.py3-none-any.whl
- localmail-0.4.1.tar.gz
- localmail-0.5.0-py2.py3-none-any.whl
- localmail-0.5.0.tar.gz


Project link:

- Homepage