linux中Scipy下载与安装

scipy下载地址:

https://github.com/scipy/scipy/releases

scipy安装命令:

sudo pip3 install scipy  (搞定)


https://blog.csdn.net/xiangcheng001/article/details/53994870

只需要几个命令即可完成:
sudo apt-get install libblas-dev
sudo apt-get install liblapack-dev
sudo apt-get install gfortran

sudo apt-get install python-scipy

https://blog.csdn.net/xgf415/article/details/56489684

Python下 SciPy 和 numpy 这两个科学计算包的依赖关系较多,安装过程较为复杂。

依赖关系:scipy 的安装需要依赖于 numpy、lapack、atlas(后两者都是线性代数工具包,而 numpy 和scipy 的测试程序的运行又依赖于 nose,整个安装过程必须要按顺序执行的。

猜你喜欢

转载自blog.csdn.net/qq_34638161/article/details/80751539
今日推荐