Skip to content

Installation

Requirements

  • Python ≥ 3.10
  • strands-agents (installed automatically)
  • No GPU needed. No PyTorch. No CUDA. Pure Python.

Install

pip install strands-microgpt

That's it

Unlike most ML packages, there's nothing else to install. The entire algorithm runs in pure Python.

Verify

from strands_microgpt import Value, MicroGPT, Tokenizer
print("✅ strands-microgpt installed successfully")

What Gets Installed

graph LR
    MG["strands-microgpt"] --> SA["strands-agents<br/><i>Agent framework</i>"]

    style MG fill:#e65100,color:#fff
    style SA fill:#264653,color:#fff

That's the entire dependency tree. The engine itself (Value, MicroGPT, Tokenizer) uses only Python stdlib.

Development Install

git clone https://github.com/cagataycali/strands-microgpt.git
cd strands-microgpt
pip install -e ".[dev]"
pytest -v

What's Next