Installation
🚧 Planned — Public distribution of the sei binary is in preparation: the installer (get.venturalitica.ai) and the source code will be published soon. In the meantime, explore the platform without installing anything in the public demo: https://demo.venturalitica.ai
sei is Venturalítica’s engine for governing high-risk AI from git. Official binaries for Linux, macOS and Windows are planned (cargo-dist installers + GHCR image); you can also run it as a container or build it from source.
Quick install (in preparation — available soon)
Section titled “Quick install (in preparation — available soon)”The commands below document the install path that will exist once the sei binary is published. They do not work yet (get.venturalitica.ai does not resolve and there is no published release).
curl -LsSf https://get.venturalitica.ai/latest/install.sh | shThe installer detects your OS and architecture (x86_64 or aarch64), verifies the
checksum and places the binary at ~/.local/bin/sei. If that directory is not on
your PATH, the installer tells you so.
irm https://get.venturalitica.ai/latest/install.ps1 | iexInstalls sei.exe under %LOCALAPPDATA%\Programs\sei. Add that folder to your
PATH to invoke it from any terminal.
docker run --rm -v "$PWD:/repo" -w /repo ghcr.io/venturalitica/sei:latest --helpThe ghcr.io/venturalitica/sei image ships only the sei binary, git and the
root certificates. Mount your repository at /repo to operate on it.
Verify the installation:
sei --helpThe output should list the 16 subcommands. See the CLI reference for a full description of each one.
Prerequisites
Section titled “Prerequisites”| Tool | Why |
|---|---|
| git | sei operates on git repositories |
uv (Python ≥ 3.11) | Run the bundled example scenarios (loan, medical) |
dvc ≥ 3 | Reproduce the scenario pipelines |
The sei binary itself only needs git. uv and dvc are only required to run the repository’s example scenarios.
Next step
Section titled “Next step”Once sei --help shows the 16 subcommands, proceed to the Quickstart to run the bundled loan example and see the ISO 23894 loop close.