Written by Jakub Rusinowski · Last updated July 10, 2026
You don't need a $2000 GPU to run AI. Small Language Models (SLMs) are efficient enough for edge devices.
You don't need a $2000 GPU to run AI. Small Language Models (SLMs) are efficient enough for edge devices.
1. Install a 64-bit OS (Ubuntu or Raspberry Pi OS). 2. Install Ollama: curl -fsSL https://ollama.com/install.sh | sh 3. Run a tiny model: ollama run qwen2.5:1.5b 4. Expectation: 3-5 tokens per second. Usable for simple commands.
Running LLMs drains battery fast.
OMP_NUM_THREADS=4 to prevent it from using all cores, saving power.