Skip to content

Installation

You can install the latest release of ms-mint directly from PyPI using pip:

pip install ms-mint

This will install the core library for use in scripts, notebooks, or other Python-based workflows.

Optional: GUI Support

To include the Solara-based interactive GUI for Jupyter notebooks:

pip install ms-mint[gui]

Development Version

To install the latest development version directly from GitHub:

pip install git+https://github.com/LewisResearchGroup/ms-mint.git

Or with GUI support:

pip install "ms-mint[gui] @ git+https://github.com/LewisResearchGroup/ms-mint.git"

Notes

As of version 1.0.0, ms-mint uses PEP 621 standards via pyproject.toml for packaging. If you plan to install from source or contribute, ensure you have an up-to-date version of pip, setuptools, and build installed:

pip install --upgrade pip setuptools build

For most users, the PyPI version is sufficient and recommended.