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¶
Clone the repository:
git clone https://github.com/bhatishan2003/chatterflow.git cd chatterflow
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
Install the package:
For regular use:
pip install .
For development (editable mode):
pip install -e .