如何解决 cannot allocate memory in static TLS block error for python packages

how to solve cannot allocate memory in static TLS block error for python packages

我正在使用 ubuntu 20.04 和 conda 4.8.3。我已经使用 pip (pip install --force-reinstall --no-cache-dir gmsh-dev) 在我的一个环境中安装了一个包,但是当我尝试在 jupyter notebook 中导入该包时,我遇到以下错误:

OSError: /home/alid/miniconda3/envs/new_env/lib/python3.9/site-packages/gmsh-git-Linux64-sdk/lib/libgmsh.so: cannot allocate memory in static TLS block

我不知道我的问题是什么,非常感谢您的帮助。

基于how others solved similar problems,尝试将其添加到LD_PRELOAD

## set the env var for "new_env" environment
conda env config vars set -n new_env LD_PRELOAD='/home/alid/miniconda3/envs/new_env/lib/python3.9/site-packages/gmsh-git-Linux64-sdk/lib/libgmsh.so'

## test importing
conda run -n new_env python -c "import gmsh"

参见the documentation on managing environment variables in Conda envs