From 0f196b211a4b67d83b41c444b671888df588b253 Mon Sep 17 00:00:00 2001 From: Nate Rupsis Date: Tue, 12 Jul 2022 10:59:57 +0200 Subject: [PATCH] Website: Add macOS to Getting Started doc Reviewed By: sybren Differential Revision: https://developer.blender.org/D15426 --- .../development/getting-started/_index.md | 27 ++++++++++++++++++- 1 file changed, 26 insertions(+), 1 deletion(-) diff --git a/web/flamenco-io-site/content/development/getting-started/_index.md b/web/flamenco-io-site/content/development/getting-started/_index.md index 3f75e12a..7b2face2 100644 --- a/web/flamenco-io-site/content/development/getting-started/_index.md +++ b/web/flamenco-io-site/content/development/getting-started/_index.md @@ -41,6 +41,7 @@ If you install NodeJS in a different way, it may not be bundled with Yarn. In th ``` sudo npm install --global yarn ``` + {{< /tab >}} {{< tab "Windows" >}} Install [Node v16 LTS](https://nodejs.org/en/download/) and then install Yarn via: @@ -48,9 +49,33 @@ Install [Node v16 LTS](https://nodejs.org/en/download/) and then install Yarn vi ``` npm install --global yarn ``` + {{< /tab >}} {{< tab "macOS" >}} -This still needs documenting. +**Option 1** (Native install) + +Install [Node v16 LTS](https://nodejs.org/en/download/) and then install Yarn via: + +``` +npm install --global yarn +``` + +
+ +**Option 2** (Homebrew) + +Install Node 16 via homebrew: + +``` +brew install node@16 +``` + +Then install yarn: + +``` +brew install yarn +``` + {{< /tab >}} {{< /tabs >}}