INSTALL GUIDE • OLLAMA
Install Ollama with official URL and OS-specific steps
Beginner-safe install flow for Windows, macOS, Linux, plus Docker prerequisite checks.
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 install path
Click Start, open PowerShell, then run:
winget install Ollama.Ollama
ollama --version
ollama serveLeave 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.
ollama serve again, then retry pull in second window.macOS install path
Open ollama.com/download, click macOS download, install app, then open Terminal:
ollama --version
ollama serveOpen second Terminal tab and run:
ollama pull llama3.2:3b
ollama run llama3.2:3b "Say hello in one sentence."Expected result: Same as Windows.
Linux install path
Open Terminal and run official install script:
curl -fsSL https://ollama.com/install.sh | sh
ollama --version
ollama serveOpen second terminal and run:
ollama pull llama3.2:3b
ollama run llama3.2:3b "Say hello in one sentence."Expected result: Model downloads and replies.
Docker path (all OS with Docker)
docker --versionExpected result: Docker version prints. If it does not, install Docker first from Docker Desktop or your Linux package manager.
Ollama usage guide
After install, complete the use guide for real day-to-day tasks.
Open usage guide →Guides hub
See the full Install → Use → Combine path.
Open guides hub →