numpy.distutils.system_info.BlasNotFoundError: Blas (http://www.netlib.org/blas/) libraries not found. Directories to search for the libraries can be specified in the numpy/distutils/site.cfg file (section [blas]) or by setting the BLAS environment variable.我需要从该站点下载哪个tar?我已经尝试过fortrans,但是一直出现此错误(明显地设置了环境变量之后)。
3 回答
慕尼黑的夜晚无繁华
TA贡献1864条经验 获得超6个赞
在Fedora上,这有效:
yum install lapack lapack-devel blas blas-devel
pip install numpy
pip install scipy
请记住除了安装“ blas ”和“ lapack ”之外,还要安装“ lapack-devel ”和“ blas-devel ”,否则您将得到您提到的错误或“ numpy.distutils.system_info。LapackNotFoundError ”错误。
添加回答
举报
0/150
提交
取消