Open In App

How to Install Python-pyzmail package on Linux?

Pyzmail is a high-level Python mail library. It has methods and classes that make reading, writing, and sending emails easier. There’s no reason why managing emails with Python should be more complex than with popular mail clients like Outlook or Thunderbird. The intricacy of the MIME structure and MIME encoding/decoding is hidden by the pyzmail package. In this article, we will learn how to install the Pyzmail package in Python on a Linux machine. 

Installing Pyzmail package on Linux using PIP

Requirements:



To install the Pyzmail package in Linux follow the following steps:

Step 1: First we set the Python3 environment in Linux operating system. So for the installation process, we will use apt manager.



sudo apt-get install python3

Step 2: Now the next important step is to install the PIP manager in our system. It is a package installation program in Python whose main purpose is to install and manage Python packages. So for the installation run the following command on the terminal.

sudo apt install python3-pip

Step 3: Now, we use pip manager to install the Pyzmail package. So follow the below command to install the Pyzmail package.

sudo pip3 install pyzmail 

Verifying the installation of Pyzmail package using PIP

After installing the package, the next main step is to verify the installation of the Pyzmail package. So in this step, we are just retrieving the information of the installed package (Pyzmail) with the below command on the terminal itself.

python3 -m pip show pyzmail 

The below output will be displayed after the successful installation of the Pyzmail package on your Linux machine.

Article Tags :