smplx 的 libGL error: MESA-LOADER: failed to open swrast 的解決方法

TonyYPZhang發表於2024-03-06

執行 demo

python examples/demo.py --model-folder ~/....../smpl_models/ --plot-joints=True --gender="neutral"

報錯

libGL error: MESA-LOADER: failed to open swrast: /usr/lib/dri/swrast_dri.so: cannot open shared object file: No such file or directory (search paths /usr/lib/x86_64-linux-gnu/dri:\$${ORIGIN}/dri:/usr/lib/dri, suffix _dri)
libGL error: failed to load driver: swrast

解決方法:

export LD_PRELOAD=/usr/lib/x86_64-linux-gnu/libstdc++.so.6
python examples/demo.py --model-folder ~/w/3drecon/data/smpl_models/ --plot-joints=True --gender="neutral"

即可。只要載入了系統的 libstdc++.so.6 即可。這個解決方法,和報錯的 swrast No such file or directory 看起來沒有任何關係。但確實能解決我的報錯。

相關文章