Docs

Install ZeroModel

Install the GitHub version now, then TestPyPI/PyPI as releases are cut.

ZeroModel is currently on the alpha release path.

Install from GitHub

python -m pip install "git+https://github.com/ernanhughes/zeromodel.git@main"

Install the TestPyPI alpha after publication

python -m pip install \
  --index-url https://test.pypi.org/simple/ \
  --extra-index-url https://pypi.org/simple/ \
  zeromodel==0.1.0a1

The --extra-index-url matters because TestPyPI may not host runtime dependencies such as NumPy.

Developer install

git clone https://github.com/ernanhughes/zeromodel.git
cd zeromodel
python -m pip install -e .[dev]
pytest -q

Release check

python -m build
python -m twine check dist/*

ZeroModel should be treated as alpha software until the TestPyPI install path and clean-environment smoke tests have passed.