Advertisement
Guest User

Untitled

a guest
Aug 25th, 2019
124
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.52 KB | None | 0 0
  1. # Install NVIDIA driver
  2. sudo apt-get install --no-install-recommends nvidia-driver-418
  3. # Reboot. Check that GPUs are visible using the command: nvidia-smi
  4.  
  5. # Install development and runtime libraries (~4GB)
  6. sudo apt-get install --no-install-recommends \
  7. cuda-10-0 \
  8. libcudnn7=7.6.0.64-1+cuda10.0 \
  9. libcudnn7-dev=7.6.0.64-1+cuda10.0
  10.  
  11. # Install TensorRT. Requires that libcudnn7 is installed above.
  12. sudo apt-get update && \
  13. && sudo apt-get install -y --no-install-recommends libnvinfer-dev=5.1.5-1+cuda10.0
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement