2024-05-02 21:52:21 +00:00
# Ollama Windows Preview
Welcome to the Ollama Windows preview.
No more WSL required!
Ollama now runs as a native Windows application, including NVIDIA and AMD Radeon GPU support.
After installing Ollama Windows Preview, Ollama will run in the background and
the `ollama` command line is available in `cmd` , `powershell` or your favorite
terminal application. As usual the Ollama [api ](./api.md ) will be served on
`http://localhost:11434` .
As this is a preview release, you should expect a few bugs here and there. If
you run into a problem you can reach out on
[Discord ](https://discord.gg/ollama ), or file an
[issue ](https://github.com/ollama/ollama/issues ).
Logs will often be helpful in diagnosing the problem (see
[Troubleshooting ](#troubleshooting ) below)
## System Requirements
2024-05-13 22:08:29 +00:00
* Windows 10 22H2 or newer, Home or Pro
2024-05-02 21:52:21 +00:00
* NVIDIA 452.39 or newer Drivers if you have an NVIDIA card
* AMD Radeon Driver https://www.amd.com/en/support if you have a Radeon card
2024-07-24 22:22:00 +00:00
Ollama uses unicode characters for progress indication, which may render as unknown squares in some older terminal fonts in Windows 10. If you see this, try changing your terminal font settings.
2024-05-02 21:52:21 +00:00
## API Access
Here's a quick example showing API access from `powershell`
```powershell
2024-09-25 18:11:22 +00:00
(Invoke-WebRequest -method POST -Body '{"model":"llama3.2", "prompt":"Why is the sky blue?", "stream": false}' -uri http://localhost:11434/api/generate ).Content | ConvertFrom-json
2024-05-02 21:52:21 +00:00
```
## Troubleshooting
While we're in preview, `OLLAMA_DEBUG` is always enabled, which adds
2024-05-20 21:19:03 +00:00
a "view logs" menu item to the app, and increases logging for the GUI app and
2024-05-02 21:52:21 +00:00
server.
Ollama on Windows stores files in a few different locations. You can view them in
the explorer window by hitting `<cmd>+R` and type in:
- `explorer %LOCALAPPDATA%\Ollama` contains logs, and downloaded updates
2024-06-15 23:30:37 +00:00
- *app.log* contains most resent logs from the GUI application
- *server.log* contains the most recent server logs
2024-05-02 21:52:21 +00:00
- *upgrade.log* contains log output for upgrades
- `explorer %LOCALAPPDATA%\Programs\Ollama` contains the binaries (The installer adds this to your user PATH)
- `explorer %HOMEPATH%\.ollama` contains models and configuration
- `explorer %TEMP%` contains temporary executable files in one or more `ollama*` directories
2024-05-03 21:07:38 +00:00
2024-09-05 22:57:38 +00:00
## Uninstall
The Ollama Windows installer registers an Uninstaller application. Under `Add or remove programs` in Windows Settings, you can uninstall Ollama.
2024-05-03 21:07:38 +00:00
## Standalone CLI
The easiest way to install Ollama on Windows is to use the `OllamaSetup.exe`
installer. It installs in your account without requiring Administrator rights.
We update Ollama regularly to support the latest models, and this installer will
help you keep up to date.
If you'd like to install or integrate Ollama as a service, a standalone
`ollama-windows-amd64.zip` zip file is available containing only the Ollama CLI
and GPU library dependencies for Nvidia and AMD. This allows for embedding
Ollama in existing applications, or running it as a system service via `ollama
2024-05-06 17:32:30 +00:00
serve` with tools such as [NSSM ](https://nssm.cc/ ).