Install and Setup the CLI Tool
mainTo use the CLI, first set up a virtual environment (especially on macOS), install the main project requirements, and then install the client package.
# Create and activate virtual environment
python3 -m venv .venv
source .venv/bin/activate
# Install main project requirements
pip install -e .
# Install client requirements
cd client
pip install -e .# Create and activate virtual environment
python3 -m venv .venv
source .venv/bin/activate
# Install main project requirements
pip install -e .
# Install client requirements
cd client
pip install -e .