From 06879f35f081a14fee7749a7167a585c8be14051 Mon Sep 17 00:00:00 2001 From: Vinay Kumar Date: Mon, 10 Aug 2026 20:05:39 +0530 Subject: [PATCH] fix: use 'python' instead of 'py' in chocolatey install script (#1617) --- docs/packaging/windows-chocolatey/tools/chocolateyinstall.ps1 | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/docs/packaging/windows-chocolatey/tools/chocolateyinstall.ps1 b/docs/packaging/windows-chocolatey/tools/chocolateyinstall.ps1 index e27045f342..2a2eb069d3 100644 --- a/docs/packaging/windows-chocolatey/tools/chocolateyinstall.ps1 +++ b/docs/packaging/windows-chocolatey/tools/chocolateyinstall.ps1 @@ -1,2 +1 @@ -$ErrorActionPreference = 'Stop'; -py -m pip install $env:ChocolateyPackageName==$env:ChocolateyPackageVersion --disable-pip-version-check +$ErrorActionPreference = 'Stop';\npython -m pip install $env:ChocolateyPackageName==$env:ChocolateyPackageVersion --disable-pip-version-check\n \ No newline at end of file