glibc

How to determine which libc implementation the host system uses

How to determine which libc implementation the host system uses Question: In our Python setup code that uses pre-built binaries and a bindings generator, we check the operating system and CPU architecture, and download binaries accordingly. Now, there are binaries for both manylinux (glibc) and musllinux (musl). How can we find out which libc implementation …

Total answers: 2

Error while importing Tensorflow in Python 2.7 in Ubuntu 12.04. 'GLIBC_2.17 not found'

Error while importing Tensorflow in Python 2.7 in Ubuntu 12.04. 'GLIBC_2.17 not found' Question: I have installed the Tensorflow bindings with python successfully. But when I try to import Tensorflow, I get the follwoing error. ImportError: /lib/x86_64-linux-gnu/libc.so.6: version `GLIBC_2.17′ not found (required by /usr/local/lib/python2.7/dist-packages/tensorflow/python/_pywrap_tensorflow.so) I have tried to update GLIBC_2.15 to 2.17, but no luck. …

Total answers: 14