# Download and install Python $pythonUrl = "https://www.python.org/ftp/python/3.12.0/python-3.12.0-amd64.exe" $installerPath = "C:\DEV\COPILOT\python-installer.exe" Write-Host "Downloading Python 3.12.0..." -ForegroundColor Cyan $ProgressPreference = 'SilentlyContinue' Invoke-WebRequest -Uri $pythonUrl -OutFile $installerPath Write-Host "Installing Python (this may take a few minutes)..." -ForegroundColor Cyan Start-Process -FilePath $installerPath -ArgumentList "/quiet", "InstallAllUsers=1", "PrependPath=1", "Include_test=0" -Wait Write-Host "Python installation complete!" -ForegroundColor Green Write-Host "Please close and reopen your terminal to use Python."