Created
July 9, 2018 17:24
-
-
Save jdkealy/a3eaa450bfd7b5d403fcd8da92b98746 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
In [2]: import tensorflow as tf | |
--------------------------------------------------------------------------- | |
ImportError Traceback (most recent call last) | |
<ipython-input-2-64156d691fe5> in <module>() | |
----> 1 import tensorflow as tf | |
/usr/local/lib/python2.7/dist-packages/tensorflow/__init__.py in <module>() | |
22 | |
23 # pylint: disable=g-bad-import-order | |
---> 24 from tensorflow.python import pywrap_tensorflow # pylint: disable=unused-import | |
25 # pylint: disable=wildcard-import | |
26 from tensorflow.tools.api.generator.api import * # pylint: disable=redefined-builtin | |
/usr/local/lib/python2.7/dist-packages/tensorflow/python/__init__.py in <module>() | |
47 import numpy as np | |
48 | |
---> 49 from tensorflow.python import pywrap_tensorflow | |
50 | |
51 # Protocol buffers | |
/usr/local/lib/python2.7/dist-packages/tensorflow/python/pywrap_tensorflow.py in <module>() | |
72 for some common reasons and solutions. Include the entire stack trace | |
73 above this error message when asking for help.""" % traceback.format_exc() | |
---> 74 raise ImportError(msg) | |
75 | |
76 # pylint: enable=wildcard-import,g-import-not-at-top,unused-import,line-too-long | |
ImportError: Traceback (most recent call last): | |
File "/usr/local/lib/python2.7/dist-packages/tensorflow/python/pywrap_tensorflow.py", line 58, in <module> | |
from tensorflow.python.pywrap_tensorflow_internal import * | |
File "/usr/local/lib/python2.7/dist-packages/tensorflow/python/pywrap_tensorflow_internal.py", line 28, in <module> | |
_pywrap_tensorflow_internal = swig_import_helper() | |
File "/usr/local/lib/python2.7/dist-packages/tensorflow/python/pywrap_tensorflow_internal.py", line 24, in swig_import_helper | |
_mod = imp.load_module('_pywrap_tensorflow_internal', fp, pathname, description) | |
ImportError: libcuda.so.1: 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 common reasons and solutions. Include the entire stack trace | |
above this error message when asking for help. |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment