Answers for "E: Unable to locate package nvidia-container-toolkit"

2

E: Unable to locate package nvidia-docker2

curl -s -L https://nvidia.github.io/nvidia-docker/gpgkey | 
  sudo apt-key add -
distribution=$(. /etc/os-release;echo $ID$VERSION_ID)
curl -s -L https://nvidia.github.io/nvidia-docker/$distribution/nvidia-docker.list | 
  sudo tee /etc/apt/sources.list.d/nvidia-docker.list
sudo apt-get update

# Install nvidia-docker2 and reload the Docker daemon configuration
sudo apt-get install -y nvidia-docker2
sudo pkill -SIGHUP dockerd
Posted by: Guest on June-14-2021

Code answers related to "E: Unable to locate package nvidia-container-toolkit"

Browse Popular Code Answers by Language