From 8d0a3c0c2749f234acf60a6c33fa93d5918f8fe7 Mon Sep 17 00:00:00 2001 From: Roman Grundkiewicz Date: Tue, 7 Sep 2021 11:11:58 +0100 Subject: Add --allow-unauthenticated when installing CUDA (#878) --- scripts/ci/install_cuda_ubuntu.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/scripts/ci/install_cuda_ubuntu.sh b/scripts/ci/install_cuda_ubuntu.sh index 8dc77eda..b058294a 100755 --- a/scripts/ci/install_cuda_ubuntu.sh +++ b/scripts/ci/install_cuda_ubuntu.sh @@ -91,7 +91,7 @@ sudo add-apt-repository "deb ${REPO_URL} /" sudo apt-get update echo "Installing CUDA packages ${CUDA_PACKAGES}" -sudo apt-get -y install ${CUDA_PACKAGES} +sudo apt-get -y --allow-unauthenticated install ${CUDA_PACKAGES} if [[ $? -ne 0 ]]; then echo "CUDA Installation Error." -- cgit v1.2.3