We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent ec3f382 commit 2f0a5d6Copy full SHA for 2f0a5d6
src/install.ps1
@@ -1,6 +1,7 @@
1
Write-Host "--- Installing Python runtime ---" -ForegroundColor blue
2
Start-Process -FilePath .\python-install.exe -ArgumentList "/quiet InstallAllUsers=1 PrependPath=1 Include_test=0 Include_launcher=0" -NoNewWindow -Wait
3
-python.exe -m pip install --upgrade pip
+# update pip and pipe output to stdout to avoid parallel execution
4
+python.exe -m pip install --upgrade pip | Out-Default
5
Write-Host "--- Python runtime installed ---`n" -ForegroundColor green
6
7
# Update Path variable with installed Python
0 commit comments