We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
To do docker build throws this error
W: GPG error: https://developer.download.nvidia.com/compute/cuda/repos/ubuntu1804/x86_64 InRelease: The following signatures couldn't be verified because the public key is not available: NO_PUBKEY A4B469963BF863CC E: The repository 'https://developer.download.nvidia.com/compute/cuda/repos/ubuntu1804/x86_64 InRelease' is not signed.
Thanks for your seggestions
The text was updated successfully, but these errors were encountered:
This seems to be related to the cuda repo key rotation that happened earlier this year. More info here.
I was able to get it to build by adding this line to the docker file, before the apt-get update line:
apt-get update
RUN apt-key adv --fetch-keys https://developer.download.nvidia.com/compute/cuda/repos/ubuntu1804/x86_64/3bf863cc.pub
(after building there are still problems with even the test scripts, I decided not to use this repo in the end)
Sorry, something went wrong.
NVIDIA/nvidia-container-toolkit#257
ARG PYTORCH="1.5" ARG CUDA="10.1" ARG CUDNN="7" FROM pytorch/pytorch:1.5-cuda10.1-cudnn7-devel ENV TORCH_CUDA_ARCH_LIST="6.0 6.1 7.0+PTX" ENV TORCH_NVCC_FLAGS="-Xfatbin -compress-all" ENV CMAKE_PREFIX_PATH="$(dirname $(which conda))/../" RUN rm /etc/apt/sources.list.d/cuda.list RUN rm /etc/apt/sources.list.d/nvidia-ml.list RUN apt-get update && apt-get -y dist-upgrade \ && apt-get install -y git libglib2.0-0 libsm6 libxrender-dev \ && apt-get clean \ && rm -rf /var/lib/apt/lists/* # Install mmfashion RUN conda clean --all RUN git clone --recursive https://github.com/open-mmlab/mmfashion.git /mmfashion WORKDIR /mmfashion ENV FORCE_CUDA="1" RUN pip install -r requirements.txt RUN pip install --no-cache-dir -e .
No branches or pull requests
To do docker build throws this error
W: GPG error: https://developer.download.nvidia.com/compute/cuda/repos/ubuntu1804/x86_64 InRelease: The following signatures couldn't be verified because the public key is not available: NO_PUBKEY A4B469963BF863CC
E: The repository 'https://developer.download.nvidia.com/compute/cuda/repos/ubuntu1804/x86_64 InRelease' is not signed.
Thanks for your seggestions
The text was updated successfully, but these errors were encountered: