Installation ============ This section describes how to install ``qpmr`` using ``pip`` or from source. It is recommended to install the package inside a virtual environment. Prerequisites -------------- * Python 3.10 or newer * ``pip`` installed Creating a virtual environment (recommended) ------------------------------- First, create and activate a virtual environment. On Linux and macOS: .. code-block:: bash python -m venv venv source venv/bin/activate On Windows: .. code-block:: bash python -m venv venv venv\Scripts\activate Once activated, your shell prompt should indicate that the virtual environment is active. Installing with pip ------------------- The easiest way to install ``qpmr`` is via ``pip``: .. code-block:: bash pip install qpmr To upgrade to the latest version: .. code-block:: bash pip install --upgrade qpmr Installing from source ---------------------- To install ``qpmr`` from source, clone the repository: .. code-block:: bash git clone https://github.com/LockeErasmus/qpmr.git cd qpmr Install the package using ``pip``: .. code-block:: bash pip install . For development purposes, you can install the package in editable mode: .. code-block:: bash pip install -e .