March 2020
Intermediate to advanced
406 pages
8h 39m
English
The following bash script performs all of the previous actions together. First, we install the CUDA driver:
#!/bin/bash# Install the CUDA drivercurl -O http://developer.download.nvidia.com/compute/cuda/repos/ubuntu1804/x86_64/cuda-repo-ubuntu1804_10.0.130-1_amd64.debdpkg -i cuda-repo-ubuntu1804_10.0.130-1_amd64.debapt-key adv --fetch-keys http://developer.download.nvidia.com/compute/cuda/repos/ubuntu1804/x86_64/7fa2af80.pubapt-get -y update && sudo apt-get -y install cuda
We then install Docker CE:
# Install Docker CEapt-get remove docker docker-engine docker.io containerd runcapt-get updateapt-get -y install apt-transport-https ca-certificates curl gnupg-agent software-properties-commoncurl -fsSL https://download.docker.com/linux/ubuntu/gpg ...
Read now
Unlock full access