Installation
Prerequisites
| Requirement | Minimum | Check | Install |
|---|---|---|---|
| Python | 3.10+ | python --version | python.org |
| LLM (optional) | Ollama or API key | ollama list | ollama.com |
Installation methods
Recommended (uv)
uv tool install hezgeneAlternative: pipx
pipx install hezgeneAlternative: pip
pip install hezgeneOptional dependencies
HezGene supports multiple LLM providers via optional extras:
# OpenAI support
pip install hezgene[llm-openai]
# Anthropic support
pip install hezgene[llm-anthropic]
# Google Gemini support
pip install hezgene[llm-google]
# All LLM providers
pip install hezgene[all-llm]Development install
If you want to contribute or work on HezGene itself:
git clone https://github.com/TechVenom/HezGene.git
cd HezGene
pip install -e ".[dev]"
pytestVerify installation
hezgene statusTip
If
hezgene is not found in your PATH after installation, try restarting your terminal or using python -m hezgene.cli as a fallback.Was this page helpful?