Install Dependencies

To install dependencies for Kaizen, follow these steps:

  1. Change directory to the Kaizen project directory:
   cd kaizen
  1. Use Poetry to install the project dependencies:
   poetry install

These commands will navigate you into the Kaizen project directory and then use Poetry to install the required dependencies specified in the project's pyproject.toml file.

Note: It is reccommended to create a virtual environment before installing modules, so as to manage installation of API specific modules with ease.

To set up a virtual environment:

Mac/Linux

python3 -m venv venv
source venv/bin/activate

Windows

python -m venv venv
.\venv\Scripts\activate