有的时候系统中的glibc版本较低,新装的软件依赖高版本的glibc,那这个时候需要升级下glibc。
通常会遇到这样的异常:
ImportError: /usr/lib64/libc.so.6: version
GLIBC_2.28’ not found`
strings /lib64/libc.so.6 |grep GLIBC_
上传到服务器或者在线安装
# 在线安装 wget https://ftp.gnu.org/gnu/glibc/glibc-2.28.tar.gz # 解压 tar zxf glibc-2.28.tar.gz cd glibc-2.28 # 选则使用的字符集,其他没用的就不要 egrep '^SUPPORTED-LOCALES|^zh_CN' localedata/SUPPORTED > tmp && cat tmp > localedata/SUPPORTED mkdir build cd build ../configure --prefix=/usr # 这步执行时间依赖你的配置,我的八核的几分钟就好了 make -j$(nproc) make install # 不然中文乱码 make localedata/install-locales
LD_LIBRARY_PATH shouldn't contain the current directory when building glibc. Please change the envir
[root@localhost opt]# echo $LD_LIBRARY_PATH :/usr/local/lib [root@localhost opt]# export LD_LIBRARY_PATH= [root@localhost opt]# echo $LD_LIBRARY_PATH [root@localhost opt]# ./glibc-2.14/configure