INSTALL GUIDE • OLLAMA

Install Ollama with official URL and OS-specific steps

Beginner-safe install flow for Windows, macOS, Linux, plus Docker prerequisite checks.

GET OLLAMA

Official URL and Docker option

Open browser to https://ollama.com/download. That is the official installer page. Docker option is available for users who already run Docker.

WINDOWS

Windows install path

Click Start, open PowerShell, then run:

winget install Ollama.Ollama
ollama --version
ollama serve

Leave that window open. Open a second PowerShell window and run:

ollama pull llama3.2:3b
ollama list
ollama run llama3.2:3b "Say hello in one sentence."

Expected result: Version prints, model appears in list, model replies with one sentence.

Troubleshooting: Close both windows, reopen one window, run ollama serve again, then retry pull in second window.
DOCKER OPTION

Docker path (all OS with Docker)

docker --version

Expected result: Docker version prints. If it does not, install Docker first from Docker Desktop or your Linux package manager.

NEXT

Ollama usage guide

After install, complete the use guide for real day-to-day tasks.

Open usage guide →