Ollama for Windows runs as a native user application and exposes the ollama command in Command Prompt, PowerShell, or another terminal after installation. The local API is served on http://localhost:11434 like other platforms.
The current Windows requirements are Windows 10 22H2 or newer, with driver requirements for NVIDIA and AMD acceleration. The default installer does not require Administrator rights and installs into the user's profile.
Use the normal OllamaSetup.exe installer unless an application needs the standalone CLI zip for a custom service layout.
Related: How to check the Ollama version
Related: How to set the Ollama model directory
Related: How to check Ollama GPU support
$ start https://ollama.com/download
$ .\OllamaSetup.exe
Use OllamaSetup.exe /DIR=“D:\Apps\Ollama” only when a custom install directory is required.
$ powershell
$ ollama --version
ollama version is 0.31.1
$ (Invoke-WebRequest -Method POST -Body '{"model":"gpt-oss:20b","prompt":"Return OK.","stream":false}' -Uri http://localhost:11434/api/generate).Content {"response":"OK","done":true}
$ explorer %LOCALAPPDATA%\Ollama