| 📚 Documentation Index | ⬅️ Back to Main README |
chmod +x install.sh
./install.sh
curllm --start-services
curllm --status
# 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:
venv to avoid PEP 668 externally-managed-environment errors.python -m pip ... and python -m playwright ... within the venv.CAPTCHA_API_KEY.| 📚 Documentation Index | ⬆️ Back to Top | Next: Environment Configuration → |