The instructions read: ```sh uv sync uv run maturin develop uv run python -c 'import zlib_py; print(zlib_py.compress(...))' ``` `uv run maturin ...` fails because maturin is not installed. `uv pip install maturin` is a workaround.
The instructions read:
uv sync uv run maturin develop uv run python -c 'import zlib_py; print(zlib_py.compress(...))'uv run maturin ...fails because maturin is not installed.uv pip install maturinis a workaround.