Ollama on macOS is distributed as a desktop application that also provides the ollama command-line client. The app manages the local server while the CLI lets terminal workflows use the same models and API.

Current requirements are macOS Sonoma or newer, with Apple M series Macs receiving CPU and GPU support and Intel Macs using CPU-only support. Model storage can grow quickly, so check free disk space before pulling large models.

The preferred install path is to mount the DMG, drag Ollama.app into Applications, start it, and allow the app to create the CLI link when prompted.

Steps to install Ollama on macOS:

  1. Download the macOS installer from the official Ollama download page.
    $ open https://ollama.com/download
  2. Mount the DMG and drag Ollama.app into /Applications.
    $ open ~/Downloads/Ollama.dmg

    Use Finder for the drag-and-drop install.

  3. Launch Ollama.app and allow the CLI link when prompted.
    $ open -a Ollama
  4. Open a new terminal and check the CLI version.
    $ ollama --version
    ollama version is 0.31.1
  5. Check the local API endpoint.
    $ curl -s http://localhost:11434/api/version
    {"version":"0.31.1"}