Skip to content

How to Install cuDNN in Ubuntu 16.04

JihunJung edited this page Oct 16, 2019 · 1 revision
  • Download cuDNN according to cuda version
    • sample version : cudnn-10.0-linux-x64-v7.6.4.38.tgz
$ cd [Path to cuDNN Download]
$ tar -xzvf cudnn-10.0-linux-x64-v7.6.4.38.tgz
$ sudo mv cuda/include/cudnn.h /usr/local/cuda/include
$ sudo mv cuda/lib64/libcudnn* /usr/local/cuda/lib64
$ sudo chmod a+r /usr/local/cuda/include/cudnn.h /usr/local/cuda/lib64/libcudnn*
$ rm -rf cuda
  • HOME
    1. Environment Setting
      • Install CUDA
      • Install cuDNN
      • Python Setting
        • Install Python
        • virtualenv setting
        • Jupter setting
    2. DeepLearning Basic
      • To do
    3. Object Detection
      • How to use TensorFlow Object Detection API
      • Remote Tensorboard Connection
      • How to use pycocotools for managing dataset(Using coco format)
    4. TensorFlow
      • To do
    5. Ubuntu
      • User management
      • SSH connect(with login message)
      • File Transfer between local and remote
    6. ETC
      • To do

Clone this wiki locally