Installation

These instructions will get you a copy of the project up and running on your local machine for development and testing purposes.

Prerequisites

  • Python 3.11 or higher

Steps

  1. Clone the repository:

    git clone https://github.com/bhatishan2003/chatterflow.git
    cd chatterflow
    
  2. Create and activate a virtual environment (recommended):

    • Windows:

      python -m venv .venv
      .venv\Scripts\activate
      
    • macOS & Linux:

      python -m venv .venv
      source .venv/bin/activate
      
  3. Install the package:

    • For regular use:

      pip install .
      
    • For development (editable mode):

      pip install -e .