bash
python3 -m venv .venv
source .venv/bin/activate
pip install maturin
pip install -r docs/requirements.txt
bash
maturin develop
didppy
will be installed in .venv
.
Replace {x}
with the version of Python.
bash
sphinx-build ./docs/ ./docs/_build/
This will generate the API reference to ./docs/_build/index.html
.
bash
maturin build --release
This will create the Python wheel. Install the wheel in a Python environment you want to use (this should be different from .venv
).
bash
pip install --force-reinstall ../target/wheels/didppy-{x}.whl
{x}
depends on your environment.