Installation
Kaizo can be installed either via pip or from source.
Install via pip
The simplest way to install Kaizo is from PyPI:
pip install kaizo
Note
This will install Kaizo and its dependencies system-wide or in your active virtual environment.
Install from Source
To install the latest version from the GitHub repository:
git clone https://github.com/NaughtFound/kaizo.git
cd kaizo
pip install -e .
Tip
The
-eoption installs in editable mode, allowing you to modify the source code and use it immediately without reinstalling.Useful for development, debugging, or contributing to Kaizo.
Requirements
Kaizo requires:
Python 3.10 or higher
PyYAML (for parsing YAML configuration files)
Warning
Using an older Python version may result in syntax errors or missing typing features, as Kaizo relies on modern type hints and data classes.