pip3 install -r requirements.txt -i http://pypi.douban.com/simple/
报错 安装失败
单独安装scipy
sudo pip3 install scipy
报错:
numpy.distutils.system_info.NotFoundError: no lapack/blas resources found
找到博客:https://blog.csdn.net/xiongjiezk/article/details/53032927
执行如下命令:
yum install blas-devel
yum install lapack-devel
继续安装scipy
sudo pip3 install scipy
报错:
distutils.errors.LinkError: Command "gcc -pthread /tmp/tmpzUwJsa/tmp/tmpzUwJsa/source.o -L/usr/lib64 -lblas -o /tmp/tmpzUwJsa/a.out" failed with exit status 1
找到这个博客
https://blog.csdn.net/u012377333/article/details/89087925
sudo yum install atlas-devel
再次安装pip3
sudo pip3 install scipy
安装成功
以上就是本文的全部内容,希望本文的内容对大家的学习或者工作能带来一定的帮助,也希望大家多多支持 码农网
猜你喜欢:- vim-go ctrl+] 自动跳转失败处理 安装gure
- Python环境安装及数据基本预处理-大数据ML样本集案例实战
- Golang入门:从安装、部署以及GoLand的安装开始
- Win2016上安装SFB2015先决条件安装失败:RewriteModule
- mac:Go安装和配置+GoLand安装和使用之完整教程
- Pulsar本地单机(伪)集群 (裸机安装与docker方式安装) 2.2.0
本站部分资源来源于网络,本站转载出于传递更多信息之目的,版权归原作者或者来源机构所有,如转载稿涉及版权问题,请联系我们。
Fortran 95/2003程序设计
中国电力出版社 / 2009-8 / 88.00元
Fortran是计算世界最早出现的高级程序设计语言之一,随着面向对象编程时代的到来,Fortran语言不仅保持了发展的步伐,而且继续在科学计算方面领先。《Fortran95/2003程序设计(第3版)》在第2~7章介绍了Fortan语言基础知识,为初学者提供入门学习资料;在第8~15章介绍了Fortran语言高级特性,为深入用好Fortran语言提供支持;在第16章讲述了Fortran语言面向对象......一起来看看 《Fortran 95/2003程序设计》 这本书的介绍吧!