解决 "/lib64/libc.so.6: version `GLIBC_2.18' not found (required by /lib64/libstdc++.so.6)"

背景信息:

https://github.com/tensorflow/tfx/tree/master/examples/chicago_taxi

在执行上述tensorflow项目时报错,缺少GLIBC_2.18,参数如下内容得到解决:

curl -O http://ftp.gnu.org/gnu/glibc/glibc-2.18.tar.gz
tar zxf glibc-2.18.tar.gz 
cd glibc-2.18/
mkdir build
cd build/
../configure --prefix=/usr
make -j2
make install

链接:https://www.jianshu.com/p/92c7a042d8ba

 

 

 

你可能感兴趣的:(Tensorflow)