From e58cd6315c3342410ddb86cebebf9afbb15a2bc8 Mon Sep 17 00:00:00 2001 From: Charlie Stanley Date: Wed, 30 Dec 2020 18:50:11 -0800 Subject: [PATCH] Add a note about installing rosetta amd64 compatibility layer on M1 macs --- .../content/en/getting-started/install-dapr-cli.md | 11 +++++++++++ 1 file changed, 11 insertions(+) diff --git a/daprdocs/content/en/getting-started/install-dapr-cli.md b/daprdocs/content/en/getting-started/install-dapr-cli.md index 97939601f..d44135b44 100644 --- a/daprdocs/content/en/getting-started/install-dapr-cli.md +++ b/daprdocs/content/en/getting-started/install-dapr-cli.md @@ -41,6 +41,17 @@ Or you can install via [Homebrew](https://brew.sh): ```bash brew install dapr/tap/dapr-cli@1.0.0-rc.3 ``` + +{{% alert title="Note for M1 Macs" color="primary" %}} +For M1 Macs, homebrew is not supported. You will need to use the dapr install script and have the rosetta amd64 compatibility layer installed. If you do not have it installed already, you can run the following: + +```bash +softwareupdate --install-rosetta +``` + +{{% /alert %}} + + {{% /codetab %}} {{% codetab %}}