curllm

Installation

📚 Documentation Index ⬅️ Back to Main README

chmod +x install.sh
./install.sh
curllm --start-services
curllm --status

Manual install

# 1) Create virtualenv
python3 -m venv venv
source venv/bin/activate
python -m pip install -U pip setuptools wheel

# 2) Python deps
python -m pip install -r requirements.txt

# 3) Playwright package and browsers
python -m pip install playwright
python -m playwright install chromium
# (Linux) optional system deps
python -m playwright install-deps chromium || true

# 4) Models
ollama pull qwen2.5:7b

# 5) Start services
curllm --start-services

Notes:


📚 Documentation Index ⬆️ Back to Top Next: Environment Configuration →