From 99a203594888ffa61b38ef2e0dcdb291dec211e1 Mon Sep 17 00:00:00 2001 From: VeronicaOcampo Date: Sun, 14 Sep 2025 11:58:17 -0400 Subject: [PATCH] Fix: Replaced 'py' with 'python' in chocolatey install script for Windows compatibility --- docs/packaging/windows-chocolatey/tools/chocolateyinstall.ps1 | 2 +- docs/packaging/windows-chocolatey/tools/chocolateyuninstall.ps1 | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/docs/packaging/windows-chocolatey/tools/chocolateyinstall.ps1 b/docs/packaging/windows-chocolatey/tools/chocolateyinstall.ps1 index e27045f342..db9f4a1c28 100644 --- a/docs/packaging/windows-chocolatey/tools/chocolateyinstall.ps1 +++ b/docs/packaging/windows-chocolatey/tools/chocolateyinstall.ps1 @@ -1,2 +1,2 @@ $ErrorActionPreference = 'Stop'; -py -m pip install $env:ChocolateyPackageName==$env:ChocolateyPackageVersion --disable-pip-version-check +python -m pip install $env:ChocolateyPackageName==$env:ChocolateyPackageVersion --disable-pip-version-check diff --git a/docs/packaging/windows-chocolatey/tools/chocolateyuninstall.ps1 b/docs/packaging/windows-chocolatey/tools/chocolateyuninstall.ps1 index 59c660b513..f11766de82 100644 --- a/docs/packaging/windows-chocolatey/tools/chocolateyuninstall.ps1 +++ b/docs/packaging/windows-chocolatey/tools/chocolateyuninstall.ps1 @@ -1,2 +1,2 @@ $ErrorActionPreference = 'Stop'; -py -m pip uninstall -y $env:ChocolateyPackageName --disable-pip-version-check +python -m pip uninstall -y $env:ChocolateyPackageName --disable-pip-version-check