diff --git a/windows/base/Dockerfile b/windows/base/Dockerfile
index 34c752b9f0d57240af0e336b6c7fc4e11dedce73..ee1bc98cc0422e67455947476f019887d3d0f86a 100644
--- a/windows/base/Dockerfile
+++ b/windows/base/Dockerfile
@@ -90,6 +90,23 @@ RUN Must-Run choco install -y --allow-multiple-versions python --version 3.9.1;
     Must-Run choco install -y --allow-multiple-versions python --version 3.8.7; \
     Must-Run choco install -y --allow-multiple-versions python --version 3.7.9; \
     $env:PATH = "\"$([Environment]::GetEnvironmentVariable('PATH', [EnvironmentVariableTarget]::User));$([Environment]::GetEnvironmentVariable('PATH', [EnvironmentVariableTarget]::Machine))\""; \
-    Must-Run /Python39/python -m pip --no-cache-dir install --no-warn-script-location wheel; \
-    Must-Run /Python38/python -m pip --no-cache-dir install --no-warn-script-location wheel; \
-    Must-Run /Python37/python -m pip --no-cache-dir install --no-warn-script-location wheel
+    Must-Run /Python39/python -m pip --no-cache-dir install --no-warn-script-location \
+        wheel \
+        twine \
+        pytest \
+        pandas \
+        h5py \
+        ; \
+    Must-Run /Python38/python -m pip --no-cache-dir install --no-warn-script-location \
+        wheel \
+        twine \
+        pytest \
+        pandas \
+        h5py \
+        ; \
+    Must-Run /Python37/python -m pip --no-cache-dir install --no-warn-script-location \
+        wheel \
+        twine \
+        pytest \
+        pandas \
+        h5py