Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion installers/nix-setup-template.sh
Original file line number Diff line number Diff line change
Expand Up @@ -54,7 +54,7 @@ export PIP_ROOT_USER_ACTION=ignore
if ! ./python -c "import pip" 2>/dev/null; then
./python -m ensurepip
fi
./python -m pip install --upgrade --force-reinstall pip --disable-pip-version-check --no-warn-script-location
./python -m pip install --only-binary ':all:' --upgrade --force-reinstall pip --disable-pip-version-check --no-warn-script-location

echo "Create complete file"
touch $PYTHON_TOOLCACHE_VERSION_PATH/$ARCH.complete
2 changes: 1 addition & 1 deletion installers/win-setup-template.ps1
Original file line number Diff line number Diff line change
Expand Up @@ -150,7 +150,7 @@ if ($LASTEXITCODE -ne 0) {
Throw "Error happened during ensurepip execution"
}
}
cmd.exe /c "$PythonExePath -m pip install --upgrade --force-reinstall pip --no-warn-script-location"
cmd.exe /c "$PythonExePath -m pip install --only-binary :all: --upgrade --force-reinstall pip --no-warn-script-location"
if ($LASTEXITCODE -ne 0) {
Throw "Error happened during pip installation / upgrade"
}
Expand Down