Skip to content

Commit 2f0a5d6

Browse files
committed
pipe pip installation to stdout
1 parent ec3f382 commit 2f0a5d6

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

src/install.ps1

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,7 @@
11
Write-Host "--- Installing Python runtime ---" -ForegroundColor blue
22
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
3+
# update pip and pipe output to stdout to avoid parallel execution
4+
python.exe -m pip install --upgrade pip | Out-Default
45
Write-Host "--- Python runtime installed ---`n" -ForegroundColor green
56

67
# Update Path variable with installed Python

0 commit comments

Comments
 (0)