Installation
MetaSheet-Guard is published on PyPI as metasheet-guard and requires
Python 3.10 or newer.
Install From PyPI
Install into your current Python environment:
Verify the command-line tool is available:
Isolated CLI Install
If you mainly want the metasheet-guard command, pipx keeps the tool isolated
from your project environments:
Upgrade an existing pipx install with:
Virtual Environment Install
For reproducible project work, create a virtual environment first:
python -m venv .venv
source .venv/bin/activate
python -m pip install --upgrade pip
python -m pip install metasheet-guard
On Windows PowerShell, activate the environment with:
Upgrade
Development Install
Use an editable install only when contributing to the repository or running the checked-in examples and tests:
git clone https://github.com/qchiujunhao/metasheet-guard.git
cd metasheet-guard
python -m pip install -e ".[dev]"
pytest
The PyPI wheel installs the Python package and CLI. The repository contains additional development files, examples, tests, documentation sources, and paper drafts.