Install#
We recommend to use the uv package manager for installing or running Rapporto.
{apt,brew,pip,zypper} install uv
Persistent#
Install package from PyPI as a tool.
uv tool install --upgrade --compile-bytecode rapporto
Ephemeral#
Soft-install package from GitHub.
Use the development head.
alias rapporto="uvx --with 'rapporto @ https://github.com/tech-writing/rapporto/archive/refs/heads/main.zip' -- rapporto"
Use a specific version.
alias rapporto="uvx --with 'rapporto @ https://github.com/tech-writing/rapporto/archive/refs/tags/v0.0.2.zip' -- rapporto"
non-uv#
If you can’t use uv, use the pipx package manager.
{apt,brew,pip,zypper} install pipx
pipx install rapporto
Development#
In order to install Rapporto for hacking on it, see relevant instructions about setting up a development Sandbox.