2017-06-13 6 views
0

Ich habe Tensorflow 0.10 in Anaconda2 installiert -> Python 2.7.Tensorflow - bekommen Segmentierungsfehler (Core Dumped) Fehler

OS: RHEL6.8

Ich war unten Fehler bekommen, wenn ich versuche,

python -c "import tensorflow" 

ImportError: /lib64/libc.so.6: version `GLIBC_2.14' not found (required by ~/anaconda2/lib/python2.7/site-packages/tensorflow/python/_pywrap_tensorflow.so) 

I have glibc_2.12 in the host. I installed glibc_2.14 in another dir. 

Now I am running the command as below: 

export LD_LIBRARY_PATH=/opt/glibc-2.14/lib 

python -c "import tensorflow" 

nun einen anderen Fehler Ich bin zu laufen bekommen:

Segmentation fault (core dumped)

+0

Ist das noch in Tensorflow 1.0 reproduzierbar? –

+0

Mögliches Duplikat von [Mehrere glibc-Bibliotheken auf einem einzelnen Host] (https://stackoverflow.com/questions/847179/multiple-glibc-libraries-on-a-single-host) –

Antwort

0

export LD_LIBRARY_PATH=/opt/glibc-2.14/lib

This answer erklärt warum solltest du das nie tun und was stattdessen tun.

Verwandte Themen