查找链接到 numpy 的 BLAS 或 MKL 的路径

Find path of BLAS or MKL that is linked to numpy

我想检查链接到 numpy 的 BLAS 或 MKL 的路径。

系统是别人搭建的,我没有root账号

有什么方法可以在 python 命令中找到路径吗?

您可以使用以下命令

np.__config__.show()

show_config 命令显示构建 numpy 的系统中的库。

Documentation link

谢谢