2017-12-05 15 views
0

に従った後のネイティブTensorFlowランタイムのロードに失敗しました、私はUbuntuの16.10+バイナリのインストール指示hereを追いました。私は最後のコマンド実行時:が、私はUbuntuでSyntaxNetをインストールしようとしているインストール手順

python -c 'import dragnn.python.load_dragnn_cc_impl, syntaxnet.load_parser_ops' 

を私は以下のエラーメッセージのこの長い行を取得する:

Traceback (most recent call last): 
 
    File "<string>", line 1, in <module> 
 
    File "/usr/local/lib/python2.7/dist-packages/dragnn/python/load_dragnn_cc_impl.py", line 19, in <module> 
 
    import tensorflow as tf 
 
    File "/usr/local/lib/python2.7/dist-packages/tensorflow/__init__.py", line 24, in <module> 
 
    from tensorflow.python import * 
 
    File "/usr/local/lib/python2.7/dist-packages/tensorflow/python/__init__.py", line 51, in <module> 
 
    from tensorflow.python import pywrap_tensorflow 
 
    File "/usr/local/lib/python2.7/dist-packages/tensorflow/python/pywrap_tensorflow.py", line 52, in <module> 
 
    raise ImportError(msg) 
 
ImportError: Traceback (most recent call last): 
 
    File "/usr/local/lib/python2.7/dist-packages/tensorflow/python/pywrap_tensorflow.py", line 41, 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: /usr/lib/x86_64-linux-gnu/libstdc++.so.6: version `GLIBCXX_3.4.22' not found (required by /usr/local/lib/python2.7/dist-packages/tensorflow/python/_pywrap_tensorflow_internal.so) 
 

 

 
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.

私は一般的なインストールの問題のページをチェックしますが、ありませんがある表示されますこれのためにまだ修正してください。誰もSyntaxNetをインストールするのと同様の問題がありますか?私は本当にあなたの助けに感謝します。

答えて

0

最新のlibstdC++ 6をインストールする必要があります。

  1. チェックバージョン

    文字列/usr/lib/x86_64-linux-gnu/libstdc++.so.6 | grepのGLIBCXX

  2. 追加レポ

    sudoのアドオンはapt - リポジトリPPA:Ubuntuの-ツールチェーン-R /テスト

  3. sudoはapt-getを を更新インストールsudo apt-get dist-upgrade#このコマンドを使用しましたが、次のコマンドも動作するはずです。 How to fix: /usr/lib/libstdc++.so.6: version `GLIBCXX_3.4.15' not found:私はこれを踏襲++ 6

のlibstdc

須藤はapt-getは、インストールします。

+0

ありがとうございました!すべてが今働いているようです – user9057894

関連する問題