2.4 KiB
type | title | linkTitle | weight | description |
---|---|---|---|---|
docs | How-To: Install Dapr CLI | Install Dapr CLI | 10 | Install the Dapr CLI to get started with Dapr |
Dapr CLI installation scripts
Begin by downloading and installing the Dapr CLI for v0.11. This is used to initialize your environment on your desired platform.
{{% alert title="Note" color="warning" %}} This command downloads and install Dapr CLI v0.11. To install the latest preview release, please visit the v1.0-rc2 version of this page. {{% /alert %}}
{{< tabs Linux Windows MacOS Binaries>}}
{{% codetab %}}
This command installs the latest linux Dapr CLI to /usr/local/bin
:
wget -q https://raw.githubusercontent.com/dapr/cli/master/install/install.sh -O - | /bin/bash
{{% /codetab %}}
{{% codetab %}}
This command installs the latest windows Dapr cli to C:\dapr
and add this directory to User PATH environment variable. Run in Command Prompt:
powershell -Command "iwr -useb https://raw.githubusercontent.com/dapr/cli/master/install/install.ps1 | iex"
Verify by opening Explorer and entering C:\dapr
into the address bar. You should see folders for bin, components, and a config file.
{{% /codetab %}}
{{% codetab %}}
This command installs the latest darwin Dapr CLI to /usr/local/bin
:
curl -fsSL https://raw.githubusercontent.com/dapr/cli/master/install/install.sh | /bin/bash
Or you can install via Homebrew:
brew install dapr/tap/dapr-cli
{{% /codetab %}}
{{% codetab %}} Each release of Dapr CLI includes various OSes and architectures. These binary versions can be manually downloaded and installed.
- Download the desired Dapr CLI from the latest Dapr Release
- Unpack it (e.g. dapr_linux_amd64.tar.gz, dapr_windows_amd64.zip)
- Move it to your desired location.
- For Linux/MacOS -
/usr/local/bin
- For Windows, create a directory and add this to your System PATH. For example create a directory called
c:\dapr
and add this directory to your path, by editing your system environment variable. {{% /codetab %}} {{< /tabs >}}
- For Linux/MacOS -
Learn more about the CLI and available commands in the [CLI docs]( {{< ref cli >}}).
Next steps
- [Init Dapr locally]({{< ref install-dapr-selfhost.md >}})
- [Init Dapr on Kubernetes]({{< ref install-dapr-kubernetes.md >}})