Skip to content

Latest commit

 

History

History
43 lines (28 loc) · 709 Bytes

File metadata and controls

43 lines (28 loc) · 709 Bytes

Installation Guide

Prerequisites

  • Python ≥ 3.11
  • Poetry ≥ 2.2.1

Getting Started

macOS Setup Guide

Windows Setup Guide

Poetry Setup

curl -sSL https://install.python-poetry.org | python3 -
# OR
pip install poetry>=1.5.0

Virtual Environment Configuration

poetry config virtualenvs.path /your/desired/path

Ensure .env.local, .env are configured with appropriate keys.

Install Dependencies

poetry lock --no-cache
poetry install --all-extras --with dev

Or manually

poetry install
poetry install --extras "each block name with spaces"