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

How to install mailrise via python pip




mailrise - An SMTP gateway for Apprise notifications., it belongs to Classifiers:

- Environment :: No Input/Output (Daemon)
- Intended Audience :: System Administrators
- Operating System :: Microsoft :: Windows
- Operating System :: POSIX :: Linux
- Topic :: Communications
- Topic :: Communications :: Email

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



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_mailrise_env

- Active the virtual environment

test_mailrise_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_mailrise_env

- Active the virtual environment

source test_mailrise_env/bin/active


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

To install mailrise on Windows(CMD):

py -m pip install mailrise

To install mailrise on Unix/macOs:

pip install mailrise


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

Example:

pip install mailrise==1.0.0                                                                          yanked


Please see the version list below table:

VersionReleased dateCommand
mailrise 1.2.12022-02-05T20:04:01Windows:

py -m pip install mailrise==1.2.1

Unix/macOs:

pip install mailrise==1.2.1

mailrise 1.2.02021-08-29T02:45:26Windows:

py -m pip install mailrise==1.2.0

Unix/macOs:

pip install mailrise==1.2.0

mailrise 1.1.02021-07-16T18:25:01Windows:

py -m pip install mailrise==1.1.0

Unix/macOs:

pip install mailrise==1.1.0

mailrise 1.0.12021-06-30T22:50:02Windows:

py -m pip install mailrise==1.0.1

Unix/macOs:

pip install mailrise==1.0.1

mailrise 1.0.0 yanked2021-06-30T19:19:14Windows:

py -m pip install mailrise==1.0.0                                                                          yanked

Unix/macOs:

pip install mailrise==1.0.0                                                                          yanked


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

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

After that, install by command:

On Windows(CMD):

py -m pip install <path_to_mailrise_downloaded_file>

On Unix/macOs:

pip install <path_to_mailrise_downloaded_file>


List distribution:

- mailrise-1.0.0-py2.py3-none-any.whl
- mailrise-1.0.0.tar.gz
- mailrise-1.0.1-py2.py3-none-any.whl
- mailrise-1.0.1.tar.gz
- mailrise-1.1.0-py2.py3-none-any.whl
- mailrise-1.1.0.tar.gz
- mailrise-1.2.0-py2.py3-none-any.whl
- mailrise-1.2.0.tar.gz
- mailrise-1.2.1-py2.py3-none-any.whl (python version >=3.8)
- mailrise-1.2.1.tar.gz (python version >=3.8)
- mailrise-1.3.0-py2.py3-none-any.whl (python version >=3.8)
- mailrise-1.3.0.tar.gz (python version >=3.8)


Project link:

- Homepage
- Documentation