0
IテンソルフローR0.10をbazel 0.3.1で作成し、エラーなしでpython whlファイルを生成しました。 しかし、このエラーが発生しています。 これを修正する方法はありますか?未定義シンボル "_Z14tf_git_versionv"テンソルフロー
>>> import tensorflow
Traceback (most recent call last):
File "<stdin>", line 1, in <module>
File "/usr/local/lib/python2.7/dist-packages/tensorflow/__init__.py", line 23, in <module>
from tensorflow.python import *
File "/usr/local/lib/python2.7/dist-packages/tensorflow/python/__init__.py", line 49, in <module>
from tensorflow.python import pywrap_tensorflow
File "/usr/local/lib/python2.7/dist-packages/tensorflow/python/pywrap_tensorflow.py", line 28, in <module>
_pywrap_tensorflow = swig_import_helper()
File "/usr/local/lib/python2.7/dist-packages/tensorflow/python/pywrap_tensorflow.py", line 24, in swig_import_helper
_mod = imp.load_module('_pywrap_tensorflow', fp, pathname, description)
ImportError: /usr/local/lib/python2.7/dist-packages/tensorflow/python/_pywrap_tensorflow.so: undefined symbol: _Z14tf_git_versionv
./configureを実行してもよろしいですか? –
私はこの問題を解決しました。https://github.com/tensorflow/tensorflow/issues/5295ありがとうございました! – joshsuihn