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
  1. >
  2. Home
  3. /Learn
  4. /How-to
  5. /How to run a specific model version by appending the tag
HOW-TO · INF

How to run a specific model version by appending the tag

beginner·5 min·By Fredoline Eruo
Target environment
Ubuntu 24.04 · Ollama 0.4.x
PREREQUISITES

Ollama installed and running

What this does

Launches a pinned variant of a model by appending a parameter-count or capability tag to the model name. This ensures deterministic behavior across runs even when the default upstream version updates.

Steps

  1. Invoke a small parameter variant with a colon separator. Runs the 1-billion-parameter slug of Llama 3.2 if available in the library.

    ollama run llama3.2:1b
    

    Expected output: >>> Send a message (type /bye to exit) if the model pulls successfully; prompts to pull if not yet downloaded.

  2. Try a mid-size variant. Runs the 3-billion-parameter variant for more capable but still lightweight inference.

    ollama run llama3.2:3b
    

    Expected output: Same interactive prompt, with a different digest and memory footprint.

  3. Return to the default variant. Uses an undecorated name when a later default release is preferred.

    ollama run llama3.2
    

    Expected output: Interactive prompt using whatever version the library currently serves as the latest untagged reference.

  4. Exit the session cleanly.

    >>> /bye
    

    Expected output: Shell prompt returns.

Verification

ollama show llama3.2:1b 2>&1 | head -3
# Expected: manifest output with 'parameters' field showing ~1B and 'digest' beginning with a hexadecimal string

Common failures

  • Error: not found - The specific tag is not published for this model family in the library; run without the tag or try a different family.
  • pulling manifest - Tag recognized but not yet downloaded; ollama run triggers the pull automatically - an internet connection is required.
  • parameter mismatch - Host RAM insufficient for the chosen variant; consult ollama show memory estimates in the documentation.
  • invalid tag syntax - Space or special characters between name and colon; use the strict modelname:tag form with no spaces.
  • daemon not running - ollama run fails with service error; start the daemon first.

Related guides

  • How to pull and run your first open-source LLM using Ollama
  • How to update an existing model to its latest version
RELATED GUIDES
INF
How to pull and run your first open-source LLM using Ollama
INF
How to update an existing model to its latest version
← All how-to guidesCourses →