From 0f0ab2c357897fa36ee30a2c69bac9d04a0fb282 Mon Sep 17 00:00:00 2001 From: Davy Peter Braun <543614+dheavy@users.noreply.github.com> Date: Mon, 1 Apr 2024 15:46:35 +0200 Subject: [PATCH] Mention C++ Build Tools in Windows' setup docs --- docs/getting-started/setup.mdx | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/docs/getting-started/setup.mdx b/docs/getting-started/setup.mdx index 92cc814..00c8424 100644 --- a/docs/getting-started/setup.mdx +++ b/docs/getting-started/setup.mdx @@ -37,12 +37,16 @@ On Windows you will need to install the following: - [Git for Windows](https://git-scm.com/download/win). - [virtualenv](https://virtualenv.pypa.io/en/latest/installation.html) or [MiniConda](https://docs.anaconda.com/free/miniconda/miniconda-install/) to manage virtual environments. - [Chocolatey](https://chocolatey.org/install#individual) to install the required packages. +- [Microsoft C++ Build Tools](https://visualstudio.microsoft.com/visual-cpp-build-tools): + - Choose [**Download Build Tools**](https://visualstudio.microsoft.com/visual-cpp-build-tools/). + - Run the downloaded file **vs_BuildTools.exe**. + - In the installer, select **Workloads** > **Desktop & Mobile** > **Desktop Development with C++**. With these installed, you can run the following commands in a **PowerShell terminal as an administrator**: ```powershell # Install the required packages -choco install -y ffmpeg cmake +choco install -y ffmpeg ``` ## Install 01