From d567e2d67eba8e8c6dab3246de7ee90562a47c0b Mon Sep 17 00:00:00 2001 From: "copilot-swe-agent[bot]" <198982749+Copilot@users.noreply.github.com> Date: Fri, 3 Oct 2025 12:23:36 +0000 Subject: [PATCH] Add python and pip to conda install for completeness Co-authored-by: leestott <2511341+leestott@users.noreply.github.com> --- .devcontainer/Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.devcontainer/Dockerfile b/.devcontainer/Dockerfile index 525c39b6..5023b65f 100644 --- a/.devcontainer/Dockerfile +++ b/.devcontainer/Dockerfile @@ -12,7 +12,7 @@ COPY .devcontainer/requirements.txt /tmp/conda-tmp/ # Install packages using conda and pip directly to avoid hanging on environment solving RUN umask 0002 \ && /opt/conda/bin/conda install -y -c conda-forge -c pytorch -c defaults \ - ipykernel ipython ipywidgets jupyter matplotlib=3.9 numpy=1.26 \ + python pip ipykernel ipython ipywidgets jupyter matplotlib=3.9 numpy=1.26 \ requests=2.32 scikit-learn scipy=1.13 opencv setuptools \ pytorch torchtext torchvision torchdata \ && /opt/conda/bin/pip install --no-cache-dir -r /tmp/conda-tmp/requirements.txt \