# Dapr CLI Installer ## Windows ``` powershell -Command "iwr -useb https://raw.githubusercontent.com/dapr/cli/master/install/install.ps1 | iex" ``` ## MacOS ``` curl -fsSL https://raw.githubusercontent.com/dapr/cli/master/install/install.sh | /bin/bash ``` ## Linux ``` wget -q https://raw.githubusercontent.com/dapr/cli/master/install/install.sh -O - | /bin/bash ```