Installation¶
Requirements¶
- Python 3.10+
- pip
- Rust toolchain (only required for source builds)
Install from PyPI¶
pip install "vyro>=0.2.2" --only-binary=:all:
Verify installation¶
Primary (recommended for end users):
vyro --help
Fallback (if your shell PATH does not expose vyro yet):
python -m vyro --help
Why two commands?¶
vyrois the official end-user CLI command.python -m vyroruns the same CLI module directly and is useful for PATH/debug scenarios.
PATH troubleshooting¶
If vyro is not found:
- Re-open terminal after install.
- Ensure Python Scripts directory is on PATH.
- Use
python -m vyrotemporarily.
Developer setup¶
pip install -e .[dev]
pip install -e .[docs]