diff --git a/test/runner/setup/remote.sh b/test/runner/setup/remote.sh
index d8d2a7707ec..530a993c418 100644
--- a/test/runner/setup/remote.sh
+++ b/test/runner/setup/remote.sh
@@ -22,7 +22,7 @@ if [ "${platform}" = "freebsd" ]; then
          sleep 10
     done
 
-    pip --version 2>/dev/null || curl --silent --show-error https://bootstrap.pypa.io/get-pip.py | python
+    pip --version 2>/dev/null || curl --silent --show-error https://bootstrap.pypa.io/get-pip.py | python - --force-reinstall
 elif [ "${platform}" = "rhel" ]; then
     while true; do
         yum install -y \
@@ -36,7 +36,7 @@ elif [ "${platform}" = "rhel" ]; then
          sleep 10
     done
 
-    pip --version 2>/dev/null || curl --silent --show-error https://bootstrap.pypa.io/get-pip.py | python
+    pip --version 2>/dev/null || curl --silent --show-error https://bootstrap.pypa.io/get-pip.py | python - --force-reinstall
 fi
 
 if [ "${platform}" = "freebsd" ] || [ "${platform}" = "osx" ]; then