Installing scipy on redhat with error “no lapack/blas resources found”

这是更新scipy出现的结果,需要新版本的scipy,而机器上只装了0.7的版本,更新的时候报错,找到了一个解决方法:

wget http://mirror.centos.org/centos/6/os/x86_64/Packages/lapack-devel-3.2.1-4.el6.x86_64.rpm
wget http://mirror.centos.org/centos/6/os/x86_64/Packages/blas-devel-3.2.1-4.el6.x86_64.rpm
wget http://mirror.centos.org/centos/6/os/x86_64/Packages/texinfo-tex-4.13a-8.el6.x86_64.rpm
wget http://mirror.centos.org/centos/6/os/x86_64/Packages/libicu-devel-4.2.1-9.1.el6_2.x86_64.rpm

sudo yum localinstall *.rpm

sudo pip install scipy

前面的不知道为什么在机器上连接不上,所以在本机down下来,在传上服务器上安装的。

参考http://stackoverflow.com/questions/24708213/install-r-on-redhat-errors-on-dependencies-that-dont-exist

https://leoliu1221.wordpress.com/2015/03/07/installing-scipy-on-redhat-with-error-no-lapackblas-resources-found/

这次安装有几个感触:

1、技术问题还是google靠谱

2、安装的时候,尽量用apt-get, yum等安装,自己下源码编译什么的容易出各种诡异的错

3、pip果然好用

4、做实验的时候,一定要先把相关的包装好,装稳定版比开发版好

时间: 2024-10-07 12:12:02

Installing scipy on redhat with error “no lapack/blas resources found”的相关文章

Windows下用PIP安装scipy出现no lapack/blas resources found

Windows下升级了pandas,但是发现scipy包随后引用出错,后来确认需重新安装scipy, 在用PIP安装scipy出现no lapack/blas resources found的错误,具体原因可参考 这里. 后来找到一种简便的解决方案,只要在网站 Unofficial Windows Binaries for Python Extension Packages 里知道到对应的whl文件,进行安装即可,注意命名如果在64bit的系统上并且python是2.7版本需要下载对应的 例如s

windows: Python安装scipy,scikit-image时提示"no lapack/blas resources found"的解决方法

解决方案: 最后,解决我遇到的这个问题的解决方案是来自以下链接的答案: http://www.voidcn.com/blog/z6491679/article/p-5740396.html. 另外还有一个类似的回答的链接: http://www.cnblogs.com/eastmount/p/5052871.html#3376247 最终,我并没有去编译源代码,而是将先前安装的numpy先通过:pip uninstall numpy.然后直接去Python提供的第三方包的列表库中查找到所需要的几

安装Python Scipy时候出现 no lapack/blas resources found 错误

系统centos6.x 64位 wget http://mirrors.163.com/centos/6/os/x86_64/Packages/lapack-devel-3.2.1-4.el6.x86_64.rpmwget http://mirrors.163.com/centos/6/os/x86_64/Packages/blas-devel-3.2.1-4.el6.x86_64.rpmwget http://mirrors.163.com/centos/6/os/x86_64/Package

linux系统下C语言调用lapack ,blas库

在利用C语言编程,经常调用其他的软件包,其中lapack,blas库是最常用的两个库,这里讲下在linux系统下,C语言编程如何调用这两个库: 1.首先讲下blas库的调用,这里以两个向量内积函数为例: #include <stdio.h> #include <math.h> double ddot_(int *,double *,int *,double *,int *); int main() { int N=2, INCX=1, INCY=1; double X[2]={1.

eclipse里maven项目An error occurred while filtering resources解决办法(转载)

转自:http://liyanjie918.blog.163.com/blog/static/20227290201581143110105/ 在使用eclipse构建maven项目时,突然出现错误提示:An error occurred while filtering resources,在项目中到处都找不到哪里有问题,最后在国外网站找到解决办法: 右键项目-->maven-->update project 果然好使!good!

【maven】Description Resource Path Location Type An error occurred while filtering resources TESTVIDEO line

在maven中构建项目的时候发现了如下错误: Description Resource Path Location Type An error occurred while filtering resources TESTVIDEO line 解决方法,鼠标放在项目上:右键 选择maven 然后 update project 试试 原文地址:https://www.cnblogs.com/appium/p/11082720.html

maven An error occurred while filtering resources

转自:http://stackoverflow.com/questions/18145774/eclipse-an-error-occurred-while-filtering-resources maven报错: 解决:项目上面右键: Maven -> Update Project

Eclipse maven 错误修正方法:An error occurred while filtering resources

最近打开Eclipse后发现项目报红叉,解决办法如下: 1.eclipse中删除该项目(注意:不要删除代码) 2.cmd,进入到项目目录下,执行命令:mvn eclipse:clean 3.重新导入项目,红叉就会消失了. 原文地址:https://www.cnblogs.com/lihao007/p/8452734.html

Centos6.5安装 scipy sciki-learn 一堆报错

最近给业务线安装python的扩展numpy,scripy,scikit-learn时,遇到了一堆报错,也走了一些弯路,费了好长时间,最好发现竟然是一个很简单的问题. 系统环境:Centos 6.5 Python: 2.7 pip install numpy 很顺利,没有报错 pip install scipy 一堆报错,报错大致如下 Installing scipy on redhat with error "no lapack/blas resources found" 然后就开始