在Linux下使用Python import时遇到下面的错误:
1821ASan runtime does not come first in initial library list; you should either link runtime to your application or manually preload it with LD_PRELOAD.
解决方法
#1. 找到libasan.so 动态库位置, 一般GCC都自带,
#一般在 /usr/lib/gcc/XXXX/XXX/libasan.so,使用下面的命令
export LD_PRELOAD=/usr/lib/gcc/x86_64-linux-gnu/11/libasan.so