Cannot import shadoworfflow in python

I have been trying for a week to fix a problem related to importing shadoworflow in python. twice now I have followed the installation instructions for ubuntu 16.04 for tensorflow. https://www.tensorflow.org/install/install_linux

when I try to import shadoworflow this is the message I get:

salvo@AMD ~ $ source ~/tensorflow/bin/activate bash
(tensorflow) salvo@AMD ~ $ python
Python 2.7.12 (default, Nov 19 2016, 06:48:10) 
[GCC 5.4.0 20160609] on linux2
Type "help", "copyright", "credits" or "license" for more information.
>>> import tensorflow
Traceback (most recent call last):
   File "<stdin>", line 1, in <module>
   File "/home/salvo/tensorflow/local/lib/python2.7/site-packages/tensorflow/__init__.py", line 24, in <module>
   from tensorflow.python import *
   File "/home/salvo/tensorflow/local/lib/python2.7/site-packages/tensorflow/python/__init__.py", line 51, in <module>
      from tensorflow.python import pywrap_tensorflow
File "/home/salvo/tensorflow/local/lib/python2.7/site-packages/tensorflow/python/pywrap_tensorflow.py", line 52, in <module>
    raise ImportError(msg)
ImportError: Traceback (most recent call last):
 File "/home/salvo/tensorflow/local/lib/python2.7/site-packages/tensorflow/python/pywrap_tensorflow.py", line 41, in <module>
    from tensorflow.python.pywrap_tensorflow_internal import *
File "/home/salvo/tensorflow/local/lib/python2.7/site-packages/tensorflow/python/pywrap_tensorflow_internal.py", line 28, in <module>
_pywrap_tensorflow_internal = swig_import_helper()
File "/home/salvo/tensorflow/local/lib/python2.7/site-packages/tensorflow/python/pywrap_tensorflow_internal.py", line 24, in swig_import_helper
_mod = imp.load_module('_pywrap_tensorflow_internal', fp, pathname, description)
ImportError: libcudnn.so.5: cannot open shared object file: No such file or directory


Failed to load the native TensorFlow runtime.

See https://www.tensorflow.org/install/install_sources#common_installation_problems

for some general reasons and decisions. Include all stack trace above this error message when requesting help.

the system is running Linux mint 18.1 python is 2.7

I'm not experienced enough to understand the link to "" or

Can anyone shed some light on this issue?

+4
source share
2

, - . CUDNN cuda, lib . /usr/local/cuda cuda. , , .

export CUDA_HOME=/usr/local/cuda-8.0
export LD_LIBRARY_PATH=${CUDA_HOME}/lib64:$LD_LIBRARY_PATH
+1

, ! Puternerd , PATH , , , ,

export LD_LIBRARY_PATH=$LD_LIBRARY_PATH:/home/salvo/Cuda/cudnn/cuda/lib64
+1

Source: https://habr.com/ru/post/1675999/


All Articles