ContinuumIO / anaconda-issues

Anaconda issue tracking
648 stars 224 forks source link

sha256sum for cuda-opencl-dev-12.5.39-0.tar.bz2 in nvidia/linux-64 is incorrect in repodata.json #13402

Closed ts-hayden-dennison closed 4 months ago

ts-hayden-dennison commented 4 months ago

Checklist

Impacted product

What happened?

The sha256sum for the cuda-opencl-dev-12.5.39-0.tar.bz2 package in https://conda.anaconda.org/nvidia/linux-64/ is incorrect in repodata.json.

If I execute

sha256sum cuda-opencl-dev-12.5.39-0.tar.bz2

I get: f437a0ce5c4c004b930c6146a7799be39f890ee0bd0f2d03dc9c8ce961faaaf0

However the listed sha256sum in repodata.json is: 844762b73756e6fa2383bbb73afadbd25c34bf4cf67d6bb99807420509a02052

I encountered this bug when trying to install AlphaFold via docker on my machine.

Expected behavior or outcome

the sha256sum of package nvidia/linux-64/cuda-opencl-dev-12.5.39-0.tar.bz2 should be listed as f437a0ce5c4c004b930c6146a7799be39f890ee0bd0f2d03dc9c8ce961faaaf0

Conda info

No response

Conda config

No response

Conda list

No response

Additional information

I came across this when trying to install AlphaFold (https://github.com/google-deepmind/alphafold) via docker on my machine. The included Dockerfile has the lines:

# Install conda packages.
ENV PATH="/opt/conda/bin:$PATH"
ENV LD_LIBRARY_PATH="/opt/conda/lib:$LD_LIBRARY_PATH"
RUN conda install -qy conda==24.1.2 pip python=3.11 \
    && conda install -y -c nvidia cuda=${CUDA_VERSION} \
    && conda install -y -c conda-forge openmm=8.0.0 pdbfixer \
    && conda clean --all --force-pkgs-dirs --yes

which cause the issue to occur.

ts-hayden-dennison commented 4 months ago

It looks like as of today the sha256sum has been corrected in repodata.json so i'm closing this issue as fixed.