Install on Mac

Install the Roboflow Inference Server on macOS with the native Apple Silicon app, with Docker, or outside Docker with MPS acceleration.

macOS native app (Apple Silicon)

You can run the Roboflow Inference Server on your Apple Silicon Mac with the native desktop app. Download the latest DMG disk image from the latest GitHub release: View the latest release and download installers on GitHub.

  1. Download the Roboflow Inference DMG disk image.
  2. Mount the disk image by double-clicking it.
  3. Drag the Roboflow Inference app to your Applications folder.
  4. Open your Applications folder and double-click the Roboflow Inference app to start the server.

Using Docker

First, install Docker Desktop. Then use the CLI to start the container:

pip install inference-cli
inference server start

If you want more control over the container settings, start it manually:

sudo docker run -d \
    --name inference-server \
    --read-only \
    -p 9001:9001 \
    --volume ~/.inference/cache:/tmp:rw \
    --security-opt="no-new-privileges" \
    --cap-drop="ALL" \
    --cap-add="NET_BIND_SERVICE" \
    roboflow/roboflow-inference-server-cpu:latest

Next steps