Installation with Python 3 using PIP

You can install the MuMailer Python package from PIP repository using:

python3 -m pip install mumailer

You can install the downloaded Wheel package (.whl) using:

cd "~/folder with the downloaded file"
python3 -m pip install mumailer-versione-*.whl

If you prefer to use the source code package you can extract and install it using:

cd "~/folder with the downloaded file"
tar xzf "mumailer-version.pkg.tar.gz"
python3 -m pip install -e "mumailer-version"

To uninstall the package later you can use:

python3 -m pip uninstall mumailer

Installation on Arch Linux and derivatives

In the AUR you can find the latest available version, it can be downloaded and built using yay (or a similar AUR helper) using yay -S mumailer and then following the AUR helper instructions.

It's possible to download the tar.zst package from the Download page and install it using:

cd "~/folder with the downloaded file"
sudo pacman -U "mumailer-version.tar.zst"