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

How to install PvMail via python pip




PvMail - Watch an EPICS PV. Send email when it changes from 0 to 1., it belongs to Classifiers:

- License :: Freely Distributable
- License :: Public Domain

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



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_PvMail_env

- Active the virtual environment

test_PvMail_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_PvMail_env

- Active the virtual environment

source test_PvMail_env/bin/active


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

To install PvMail on Windows(CMD):

py -m pip install PvMail

To install PvMail on Unix/macOs:

pip install PvMail


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

Example:

pip install PvMail==3.0.3


Please see the version list below table:

VersionReleased dateCommand
PvMail 3.2.82017-04-01T18:25:17Windows:

py -m pip install PvMail==3.2.8

Unix/macOs:

pip install PvMail==3.2.8

PvMail 3.2.62015-04-13T15:42:52Windows:

py -m pip install PvMail==3.2.6

Unix/macOs:

pip install PvMail==3.2.6

PvMail 3.2.52014-12-05T21:46:30Windows:

py -m pip install PvMail==3.2.5

Unix/macOs:

pip install PvMail==3.2.5

PvMail 3.2.42014-11-24T13:37:16Windows:

py -m pip install PvMail==3.2.4

Unix/macOs:

pip install PvMail==3.2.4

PvMail 3.2.32014-11-19T18:41:02Windows:

py -m pip install PvMail==3.2.3

Unix/macOs:

pip install PvMail==3.2.3

PvMail 3.2.22014-11-18T22:21:11Windows:

py -m pip install PvMail==3.2.2

Unix/macOs:

pip install PvMail==3.2.2

PvMail 3.2.12014-11-18T22:03:07Windows:

py -m pip install PvMail==3.2.1

Unix/macOs:

pip install PvMail==3.2.1

PvMail 3.2.02014-11-18T21:45:48Windows:

py -m pip install PvMail==3.2.0

Unix/macOs:

pip install PvMail==3.2.0

PvMail 3.1.02014-11-12T00:17:43Windows:

py -m pip install PvMail==3.1.0

Unix/macOs:

pip install PvMail==3.1.0

PvMail 3.0.32014-07-10T18:51:44Windows:

py -m pip install PvMail==3.0.3

Unix/macOs:

pip install PvMail==3.0.3


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

Download the distribution file from PvMail-3.2.8.zip or the specific PvMail version in the below list of distribution

After that, install by command:

On Windows(CMD):

py -m pip install <path_to_PvMail_downloaded_file>

On Unix/macOs:

pip install <path_to_PvMail_downloaded_file>


List distribution:


Project link:

- Homepage