LeeYK / Deep-ing-Source

1 stars 0 forks source link

Set up problems for Tensorflow #10

Open seriousran opened 7 years ago

seriousran commented 7 years ago

Problem: libcudnn.so.5: cannot open shared object file: No such file or directory

Solution1: .bashrc export LD_LIBRARY_PATH=/usr/local/cuda/lib64/

Solution 2: (I needed this one) ln -s libcudnn.so.6.* libcudnn.so.5

Link: https://stackoverflow.com/questions/42013316/after-building-tensorflow-from-source-seeing-libcudart-so-and-libcudnn-errors

seriousran commented 7 years ago

Problem: PermissionError: [Errno 13] Permission denied: '/usr/local/lib/python3.4/dist-packages/tensorboard'

Solution: https://github.com/tensorflow/tensorflow/issues/7961

seriousran commented 7 years ago

Remove python 2.7 http://egloos.zum.com/chanik/v/4112679

apt purge python2.7-minimal update-alternatives --install /usr/bin/python python /usr/bin/python3.5 1