From a4ce2d01ce34da04fa1d1b67d58f44cbbb0960ec Mon Sep 17 00:00:00 2001 From: jack1142 <6032823+jack1142@users.noreply.github.com> Date: Sat, 28 Mar 2020 16:08:25 +0100 Subject: [PATCH] Use `choco upgrade`, not `choco install` (#3684) * Use `choco upgrade`, not `choco install` and add `--version` for Python * Update install_windows.rst * actually, nah --- docs/install_windows.rst | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/docs/install_windows.rst b/docs/install_windows.rst index 8762fbebd..c8a1ea85a 100644 --- a/docs/install_windows.rst +++ b/docs/install_windows.rst @@ -26,15 +26,15 @@ Then run each of the following commands: Set-ExecutionPolicy Bypass -Scope Process -Force iex ((New-Object System.Net.WebClient).DownloadString('https://chocolatey.org/install.ps1')) - choco install git --params "/GitOnlyOnPath /WindowsTerminal" -y - choco install visualstudio2019-workload-vctools -y - choco install python3 -y + choco upgrade git --params "/GitOnlyOnPath /WindowsTerminal" -y + choco upgrade visualstudio2019-workload-vctools -y + choco upgrade python3 -y For Audio support, you should also run the following command before exiting: .. code-block:: none - choco install adoptopenjdk11jre -y + choco upgrade adoptopenjdk11jre -y From here, exit the prompt then continue onto `creating-venv-windows`.