我正在尝试在需要libatlas
.
我已经安装了 libatlas 但我可以在/usr/lib/atlas-base
我还将所有文件复制到一个名为的新文件夹中/atlas
:
cp -a /usr/lib/atlas-base/* /usr/lib/atlas
但是,当我运行 python 代码时,我看到:
/usr/bin/ld: cannot find -latlas
/usr/bin/ld: cannot find -l477blas
/usr/bin/ld: cannot find -lcblas
我也尝试添加到环境变量,但没有奏效:
set LIBPATH = [BUILD_LIB_DIR, /usr/lib/atlas]
我还尝试将路径路径添加到 ld 文件:
/usr/lib/atlas
或者
/usr/lib/atlas-base
它们都不起作用,我仍然看到运行 Python 代码的错误。