Installation instructions

MWRpy can be installed on any computer having Python 3.10 or higher. The actual installation procedure depends on the operating system. The instructions below are for Ubuntu 22.04.

Python installation

$ sudo apt update && sudo apt upgrade
$ sudo apt install python3-venv python3-pip python3-tk

Virtual environment

Create a new virtual environment and activate it:

$ python3 -m venv venv
$ source venv/bin/activate

Pip-based installation

MWRpy is available from Python Package Index, PyPI. Use Python’s package manager, pip, to install MWRpy package into the virtual environment:

(venv)$ pip3 install mwrpy

MWRpy is now ready for use from that virtual environment.