惯性聚合 高效追踪和阅读你感兴趣的博客、新闻、科技资讯
阅读原文 在惯性聚合中打开

推荐订阅源

Microsoft Azure Blog
Microsoft Azure Blog
J
Java Code Geeks
量子位
腾讯CDC
C
Check Point Blog
小众软件
小众软件
IT之家
IT之家
I
InfoQ
Hugging Face - Blog
Hugging Face - Blog
Stack Overflow Blog
Stack Overflow Blog
让小产品的独立变现更简单 - ezindie.com
让小产品的独立变现更简单 - ezindie.com
GbyAI
GbyAI
Apple Machine Learning Research
Apple Machine Learning Research
大猫的无限游戏
大猫的无限游戏
博客园_首页
S
SegmentFault 最新的问题
The Cloudflare Blog
阮一峰的网络日志
阮一峰的网络日志
aimingoo的专栏
aimingoo的专栏
P
Proofpoint News Feed
钛媒体:引领未来商业与生活新知
钛媒体:引领未来商业与生活新知
Google DeepMind News
Google DeepMind News
T
Tailwind CSS Blog
Martin Fowler
Martin Fowler

DEV Community

Authentication Security Deep Dive: From Brute Force to Salted Hashing (With Java Examples) Why AI Systems Don’t Fail — They Drift Spilling beans for how i learn for exam😁"Reinforcement Learning Cheat Sheet" I Replaced Chrome with Safari for AI Browser Automation. Here's What Broke (and What Finally Worked) How Python Borrows Other People's Work The $40 Architecture: Processing 1 Billion API Requests with 99.99% Uptime Vibe Coding: A Workflow Guide (From Zero to SaaS) Most webhook security guides protect the wrong side. The scary part is delivery. Headless CMS for TanStack Start: Build a Blog with Cosmic EU Age Verification App "Hacked in 2 Minutes" — What Actually Happened Comfy Cloud’s delete function does not actually remove files Running AI Models on GPU Cloud Servers: A Beginner Guide Event-driven media intelligence with AWS Step Functions and Bedrock I scored 500 AI prompts across 8 quality dimensions — here's what broke How to Call Google Gemini API from Next.js (Free Tier, No Backend Needed) The Portal Protocol: Reclaiming Human Connection in the Age of AI How to Fix Your Team's Scattered Knowledge Problem With a Self-Hosted Forum Intro to tc Cloud Functors: A Graph-First Mental Model for the Modern Cloud Designing Multi-Tenant Backends With Both Ownership and Team Access I Built a Neumorphic CSS Library with 77+ Components — Here's What I Learned PostgreSQL Performance Optimization: Why Connection Pooling Is Critical at Scale Cómo construí un SaaS multi-rubro para gestionar expensas en Argentina con FastAPI + Vue 3 🚀 I Built an Ethical Hacking Scanner Tool – Open Source Project I Replaced /usage and /context in Claude Code With a Single Statusline A Pythonic Way to Handle Emails (IMAP/SMTP) with Auto-Discovery and AI-Ready Design I Collected 8.9 Million Polymarket Price Points — Here's What I Found About How Markets Really Move EcoTrack AI — Carbon Footprint Tracker & Dashboard Everyone's Using AI. No One Agrees How. 5 self-hosted ebook managers worth trying in 2026 Building Your First AI Agent with LangChain: From Chatbot to Autonomous Assistant
Getting Started with Ollama: Run LLMs Locally in 10 Minutes
Mohit Kumar · 2026-06-28 · via DEV Community

Mohit Kumar

If you've ever wanted to run a large language model on your own machine — no API key, no cloud bill, no data leaving your laptop — Ollama is the easiest way to get there. It packages model weights, a runtime (built on llama.cpp), and a simple CLI/REST API into one tool that works the same way on macOS, Linux, and Windows.

This guide covers installation, running your first model, the core commands you'll actually use, picking a model for your hardware, and hooking Ollama into your own code via its API.

Why run models locally?

  • Privacy — your prompts and data never leave your machine.
  • Cost — no per-token billing. You pay once, in hardware (or nothing, if you already have a decent laptop).
  • Offline — works on a plane, in a SCIF, or wherever your Wi-Fi doesn't.
  • Control — swap models, tweak parameters, fine-tune behavior with no rate limits.

The tradeoff: local models are generally smaller and slightly behind frontier cloud models (GPT, Claude, Gemini) on raw capability — though the gap keeps shrinking fast.

Installation

macOS

Download the app from ollama.com/download, or use Homebrew:

brew install ollama

Linux

curl -fsSL https://ollama.com/install.sh | sh

This installs the ollama binary and sets up a systemd service so it runs in the background. Check it's alive:

systemctl status ollama

Windows

Download OllamaSetup.exe from ollama.com/download and run it — no admin rights required. Recent versions ship a full desktop app with a chat window, so you can skip the terminal entirely if you prefer. A native ARM64 build is also available for Windows-on-Arm devices.

Docker

docker run -d -v ollama:/root/.ollama -p 11434:11434 --name ollama ollama/ollama

Add --gpus=all if you have an NVIDIA GPU and the NVIDIA Container Toolkit installed.

Verify it's working

ollama --version
ollama list

An empty list is expected on a fresh install — it just confirms the daemon is up and responding.

Run your first model

ollama run llama3.2

This pulls the model (a few GB, one-time download) and drops you into an interactive chat session. Type a prompt, hit enter, get a response. Ctrl+D or /bye exits.

Core commands cheat sheet

Command What it does
ollama run <model> Pull (if needed) and chat with a model
ollama pull <model> Download a model without starting a chat
ollama list Show models you have installed
ollama ps Show models currently loaded in memory
ollama show <model> Show details/parameters for a model
ollama rm <model> Delete a model to free disk space
ollama stop <model> Unload a model from memory
ollama create <name> -f Modelfile Build a custom model from a Modelfile

Always pull with an explicit tag for anything you depend on (ollama pull qwen2.5-coder:7b), since :latest can change under you.

Picking a model for your hardware

Ollama's library has hundreds of models. As a starting point:

Use case Try Rough RAM/VRAM
General daily driver, light hardware llama3.2:3b ~4 GB
General daily driver, mid hardware llama3.1:8b or qwen3:8b ~6–8 GB
Coding qwen2.5-coder:7b or qwen3-coder:30b (MoE, runs lighter than its size suggests) 6–20 GB
Reasoning / math / step-by-step logic deepseek-r1:7b or :14b 6–12 GB
Best quality you can fit on a single consumer GPU qwen3.6:27b or gpt-oss:20b ~16–24 GB
Vision (images + text) llava or gemma3:12b 8–16 GB
Embeddings (for RAG / semantic search) nomic-embed-text <1 GB

Rule of thumb for sizing: a 7–8B model at Q4 quantization needs roughly 5–6 GB of memory; rough numbers, not gospel. Mixture-of-experts models (the ones with an "active/total" split, like qwen3-coder:30b) only run a fraction of their listed size at inference time, so they're often faster than their parameter count implies — but they still need the full model in memory, not just the active slice. Always check ollama.com/library for the current tag list, since model lineups change weekly.

If you're not sure where to start: pull a small model, use it for a week on your actual tasks, and let what it struggles with point you toward the next one.

Using the API

Ollama exposes a REST API on localhost:11434 — this is how every IDE plugin, chat UI, and framework talks to it under the hood.

curl http://localhost:11434/api/chat -d '{
  "model": "llama3.2",
  "messages": [{ "role": "user", "content": "Explain Ollama in one sentence." }],
  "stream": false
}'

It also exposes an OpenAI-compatible endpoint, so anything built for the OpenAI SDK can point at Ollama with a base URL change:

http://localhost:11434/v1/chat/completions

Python

pip install ollama

from ollama import chat

response = chat(model='llama3.2', messages=[
    {'role': 'user', 'content': 'Why is the sky blue?'}
])
print(response.message.content)

Customizing a model with a Modelfile

Want a model with a fixed system prompt or different default parameters? Create a Modelfile:

FROM llama3.2

PARAMETER temperature 0.7
PARAMETER num_ctx 4096

SYSTEM """
You are a terse code reviewer. Point out bugs and style issues only — no praise, no fluff.
"""

Build it:

ollama create code-reviewer -f Modelfile
ollama run code-reviewer

Now code-reviewer is its own model in ollama list, with your settings baked in.

A few practical tips

  • Bind address: by default Ollama only listens on 127.0.0.1. Setting OLLAMA_HOST=0.0.0.0 exposes the API to your whole network with no authentication — fine on a trusted LAN, risky anywhere else.
  • Multiple models loaded at once: OLLAMA_NUM_PARALLEL and OLLAMA_MAX_LOADED_MODELS control concurrency if you're serving more than one model.
  • Long contexts are expensive: KV cache memory scales with context length, not just model size. A 70B model at 128K context can add tens of GB beyond the weights alone. Set num_ctx deliberately in a Modelfile instead of leaving it at whatever default your VRAM tier triggers.
  • GPU not being used? Check ollama ps — it shows whether a model is running on CPU or GPU. Driver issues (CUDA/ROCm) are the most common cause of silent CPU fallback.

Where to go next

  • Browse ollama.com/library for the full, constantly-updated model list.
  • Point any OpenAI-SDK-based tool (LangChain, LlamaIndex, Continue, etc.) at http://localhost:11434/v1 to swap in local models with minimal code changes.
  • Pair a small embedding model (nomic-embed-text) with a chat model to build a local RAG pipeline with zero API cost.

That's the whole loop: install, pull, run, integrate. Everything else is just picking the right model for the job.