/lib64/libstdc++.so.6: version `CXXABI_1.3.9‘ not found

原因:gcc动态库版本过老
解决方法:

 vi  ~/.bash_profile

文件中添加

LD_LIBRARY_PATH=/home/xx/anaconda3/lib:$LD_LIBRARY_PATH
export LD_LIBRARY_PATH

再重新激活环境

source  ~/.bash_profile

参考:
[1]报错信息ImportError: /lib64/libstdc++.so.6: version `CXXABI_1.3.9’ not found (required by…) [CSDN]

你可能感兴趣的:(Linux,bash,linux)