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

How to install lathermail via python pip




lathermail - SMTP Server with API for email testing inspired by mailtrap and maildump, it belongs to Classifiers:

- Environment :: Web Environment
- Programming Language :: Python :: Implementation
- Programming Language :: Python :: Implementation :: CPython
- Programming Language :: Python :: Implementation :: PyPy
- Topic :: Communications
- Topic :: Communications :: Email
- Topic :: Internet
- Topic :: Internet :: WWW/HTTP
- Topic :: Internet :: WWW/HTTP :: WSGI
- Topic :: Internet :: WWW/HTTP :: WSGI :: Server

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



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_lathermail_env

- Active the virtual environment

test_lathermail_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_lathermail_env

- Active the virtual environment

source test_lathermail_env/bin/active


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

To install lathermail on Windows(CMD):

py -m pip install lathermail

To install lathermail on Unix/macOs:

pip install lathermail


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

Example:

pip install lathermail==0.1.0


Please see the version list below table:

VersionReleased dateCommand
lathermail 0.4.22020-08-21T11:47:29Windows:

py -m pip install lathermail==0.4.2

Unix/macOs:

pip install lathermail==0.4.2

lathermail 0.4.12017-02-06T20:52:44Windows:

py -m pip install lathermail==0.4.1

Unix/macOs:

pip install lathermail==0.4.1

lathermail 0.4.02017-02-06T19:42:59Windows:

py -m pip install lathermail==0.4.0

Unix/macOs:

pip install lathermail==0.4.0

lathermail 0.3.12016-09-02T09:05:14Windows:

py -m pip install lathermail==0.3.1

Unix/macOs:

pip install lathermail==0.3.1

lathermail 0.3.02016-09-01T21:29:37Windows:

py -m pip install lathermail==0.3.0

Unix/macOs:

pip install lathermail==0.3.0

lathermail 0.2.02015-11-04T09:03:51Windows:

py -m pip install lathermail==0.2.0

Unix/macOs:

pip install lathermail==0.2.0

lathermail 0.1.92015-11-02T20:19:45Windows:

py -m pip install lathermail==0.1.9

Unix/macOs:

pip install lathermail==0.1.9

lathermail 0.1.82015-11-02T18:05:41Windows:

py -m pip install lathermail==0.1.8

Unix/macOs:

pip install lathermail==0.1.8

lathermail 0.1.72015-11-02T15:03:56Windows:

py -m pip install lathermail==0.1.7

Unix/macOs:

pip install lathermail==0.1.7

lathermail 0.1.62015-11-01T17:02:32Windows:

py -m pip install lathermail==0.1.6

Unix/macOs:

pip install lathermail==0.1.6

lathermail 0.1.52015-10-31T13:30:18Windows:

py -m pip install lathermail==0.1.5

Unix/macOs:

pip install lathermail==0.1.5

lathermail 0.1.42015-10-30T16:02:07Windows:

py -m pip install lathermail==0.1.4

Unix/macOs:

pip install lathermail==0.1.4

lathermail 0.1.32015-10-30T13:30:20Windows:

py -m pip install lathermail==0.1.3

Unix/macOs:

pip install lathermail==0.1.3

lathermail 0.1.22015-10-30T13:26:05Windows:

py -m pip install lathermail==0.1.2

Unix/macOs:

pip install lathermail==0.1.2

lathermail 0.1.12015-10-30T13:20:33Windows:

py -m pip install lathermail==0.1.1

Unix/macOs:

pip install lathermail==0.1.1

lathermail 0.1.02015-10-30T13:15:02Windows:

py -m pip install lathermail==0.1.0

Unix/macOs:

pip install lathermail==0.1.0


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

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

After that, install by command:

On Windows(CMD):

py -m pip install <path_to_lathermail_downloaded_file>

On Unix/macOs:

pip install <path_to_lathermail_downloaded_file>


List distribution:

- lathermail-0.1.0.tar.gz
- lathermail-0.1.1.tar.gz
- lathermail-0.1.2.tar.gz
- lathermail-0.1.3.tar.gz
- lathermail-0.1.4.tar.gz
- lathermail-0.1.5.tar.gz
- lathermail-0.1.6.tar.gz
- lathermail-0.1.7.tar.gz
- lathermail-0.1.8.tar.gz
- lathermail-0.1.9.tar.gz
- lathermail-0.2.0.tar.gz
- lathermail-0.3.0-py2-none-any.whl
- lathermail-0.3.0.tar.gz
- lathermail-0.3.0.zip
- lathermail-0.3.1-py2.py3-none-any.whl
- lathermail-0.3.1.tar.gz
- lathermail-0.4.0-py2.py3-none-any.whl
- lathermail-0.4.0.tar.gz
- lathermail-0.4.1-py2.py3-none-any.whl
- lathermail-0.4.1.tar.gz
- lathermail-0.4.2-py2.py3-none-any.whl
- lathermail-0.4.2.tar.gz


Project link:

- Homepage