RUNLOCALAIv38
->Will it run?Best GPUCompareTroubleshootStartLearnPulseModelsHardwareToolsBench
Run check
RUNLOCALAI

Independently operated catalog for local-AI hardware and software. Hand-written verdicts. Source-cited claims. Reproducible commands when we have them.

OP·Fredoline Eruo
DIR
  • Models
  • Hardware
  • Tools
  • Benchmarks
TOOLS
  • Will it run?
  • Compare hardware
  • Cost vs cloud
  • Choose my GPU
  • Prompting kits
  • Quick answers
REF
  • All buyer guides
  • Learn local AI
  • Methodology
  • Glossary
  • Errors KB
  • Trust
EDITOR
  • About
  • Author
  • How we make money
  • Editorial policy
  • Contact
LEGAL
  • Privacy
  • Terms
  • Sitemap
MAIL · MONTHLY DIGEST
Get monthly local AI changes
Monthly recap. No spam.
DISCLOSURE

Some links on this site are affiliate links (Amazon Associates and other first-class retailers). When you buy through them, we earn a small commission at no extra cost to you. Affiliate links do not influence our verdicts — there are cards we rate highly that we don't have affiliate relationships with, and cards that sell well that we refuse to recommend. Read more →

© 2026 runlocalai.coIndependently operated
RUNLOCALAI · v38
Errors / Configuration / Ollama: Error: model 'X' not found
Configuration
Verified by owner

Ollama: Error: model 'X' not found

Error: model 'X' not found, try pulling it first
By Fredoline Eruo · Last verified Jun 12, 2026

Cause

You ran ollama run <name> for a model that hasn't been pulled to your local Ollama library yet. Ollama doesn't auto-pull; run only works on already-downloaded models.

A second cause: the model name is slightly off. Ollama is case-insensitive but tag-strict — llama3.1 is different from llama3.1:8b.

Solution

Pull then run:

ollama pull llama3.1:8b
ollama run llama3.1:8b

Or use ollama run directly which auto-pulls if missing in newer versions:

ollama run llama3.1:8b

Check available models in the library:

ollama list

Browse the official Ollama library at ollama.com/library for the exact tag. Common gotcha: the default tag (no :tag suffix) varies by model — llama3.1 defaults to 8b but qwen2.5 defaults to 7b.

Related errors

  • Ollama: bind: address already in use (port 11434)
  • Ollama: connection refused on localhost:11434
  • Ollama truncates input — default context length is only 2048
  • Token generation slows as conversation gets longer
  • Slow tokens/sec on capable GPU (silent CPU fallback)

Did this fix it?

If your case was different, email Contact support with what you saw and we'll update the page. If it worked but took different commands on your platform, we want to know that too.