Removing Ollama from macOS requires deleting both the application and the user data locations that store models, logs, caches, and saved app state. Deleting only Ollama.app leaves downloaded models behind.
Model files under ~/.ollama can be tens or hundreds of gigabytes. Back up or move that directory before removal when the models or Modelfiles are needed later.
Quit the app before deleting files so the server does not recreate state while cleanup is running.
Related: How to back up and restore Ollama data
Related: How to install Ollama on macOS
Related: How to list Ollama models
$ osascript -e 'quit app "Ollama"'
$ sudo rm -rf /Applications/Ollama.app $ sudo rm -f /usr/local/bin/ollama
$ rm -rf "$HOME/Library/Application Support/Ollama" $ rm -rf "$HOME/Library/Saved Application State/com.electron.ollama.savedState"
$ rm -rf "$HOME/Library/Caches/com.electron.ollama" $ rm -rf "$HOME/Library/Caches/ollama" $ rm -rf "$HOME/Library/WebKit/com.electron.ollama"
$ rm -rf "$HOME/.ollama"
This removes models, logs, and local configuration for the user.
$ command -v ollama