Advertisement
Guest User

Untitled

a guest
Dec 7th, 2019
127
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.12 KB | None | 0 0
  1. # Add NVIDIA package repositories
  2. wget https://developer.download.nvidia.com/compute/cuda/repos/ubuntu1804/x86_64/cuda-repo-ubuntu1804_10.0.130-1_amd64.deb
  3. sudo dpkg -i cuda-repo-ubuntu1804_10.0.130-1_amd64.deb
  4. sudo apt-key adv --fetch-keys https://developer.download.nvidia.com/compute/cuda/repos/ubuntu1804/x86_64/7fa2af80.pub
  5. sudo apt-get update
  6. wget http://developer.download.nvidia.com/compute/machine-learning/repos/ubuntu1804/x86_64/nvidia-machine-learning-repo-ubuntu1804_1.0.0-1_amd64.deb
  7. sudo apt install ./nvidia-machine-learning-repo-ubuntu1804_1.0.0-1_amd64.deb
  8. sudo apt-get update
  9.  
  10. # Install NVIDIA driver
  11. sudo apt-get install --no-install-recommends nvidia-driver-418
  12. # Reboot. Check that GPUs are visible using the command: nvidia-smi
  13.  
  14. # Install development and runtime libraries (~4GB)
  15. sudo apt-get install --no-install-recommends \
  16. cuda-10-0 \
  17. libcudnn7=7.6.2.24-1+cuda10.0 \
  18. libcudnn7-dev=7.6.2.24-1+cuda10.0
  19.  
  20.  
  21. # Install TensorRT. Requires that libcudnn7 is installed above.
  22. sudo apt-get install -y --no-install-recommends libnvinfer5=5.1.5-1+cuda10.0 \
  23. libnvinfer-dev=5.1.5-1+cuda10.0
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement