当前位置: 首页>>技术问答>>正文


在Ubuntu上安装SciPy

,

问题描述

我运行Python 2.7并尝试使用easy_install安装scipy,它返回以下错误:

Searching for scipy
Reading http://pypi.python.org/simple/scipy/
Reading http://www.scipy.org
Reading http://sourceforge.net/project/showfiles.php?group_id=27747&package_id=19531
Reading http://new.scipy.org/Wiki/Download
Best match: scipy 0.11.0
Downloading http://pypi.python.org/packages/source/s/scipy/scipy-0.11.0.zip#md5=40b700ddde9ddab643b640fff7a9d753
Processing scipy-0.11.0.zip
Running scipy-0.11.0/setup.py -q bdist_egg --dist-dir /tmp/easy_install-49BQSz/scipy-0.11.0/egg-dist-tmp-KMjwKy
Running from scipy source directory.
/usr/lib64/python2.7/site-packages/numpy/distutils/system_info.py:1425: UserWarning: 
    Atlas (http://math-atlas.sourceforge.net/) libraries not found.
    Directories to search for the libraries can be specified in the
    numpy/distutils/site.cfg file (section [atlas]) or by setting
    the ATLAS environment variable.
  warnings.warn(AtlasNotFoundError.__doc__)
/usr/lib64/python2.7/site-packages/numpy/distutils/system_info.py:1434: UserWarning: 
    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.
  warnings.warn(BlasNotFoundError.__doc__)
/usr/lib64/python2.7/site-packages/numpy/distutils/system_info.py:1437: UserWarning: 
    Blas (http://www.netlib.org/blas/) sources not found.
    Directories to search for the sources can be specified in the
    numpy/distutils/site.cfg file (section [blas_src]) or by setting
    the BLAS_SRC environment variable.
  warnings.warn(BlasSrcNotFoundError.__doc__)
error: 
    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.

所以我通过执行安装了Blas和Atalas

apt-get install blas
apt-get install atlas

但是,easy_install错误不会消失。

谢谢!

最佳解决办法

Ubuntu将库文件放在一个相当奇特的目录中。 /usr/lib/x86_64-linux-gnu/或其他东西,取决于您的架构。您需要将此目录添加到site.cfg文件或BLAS环境变量中。

如果简易安装也需要头文件,则需要安装相应的-dev软件包。

但是,像@ pitsanu-swangpheaw建议的那样,您也可以使用ubuntu包管理器安装到站点包目录。

sudo apt-get install python-numpy python-scipy

次佳解决办法

什么对我有用:

要从PIP实际安装scipy,您需要包libatlas-base-dev(ATLAS /BLAS的库等)和gfortran(GNU Fortran编译器)。

安装这些软件包后,scipy安装程序应按预期完成。

第三种解决办法

如果您使用的是Python3,则可以使用apt-get安装软件包

sudo apt-get install python3-numpy python3-scipy

第四种办法

sudo apt-get install python-scipy在我的案例中工作。

第五种办法

如果您仍想使用pip进行安装,可以使用build-dep获取python-numpy和python-scipy的依赖关系,然后使用pip进行安装

sudo apt-get build-dep python-numpy python-scipy

替换python3作为另一个回答状态你正在寻找。

第六种办法

我通过运行解决了这个问题(类似于以前的建议)

apt-get install scipy

参考资料

本文由Ubuntu问答整理, 博文地址: https://ubuntuqa.com/article/6380.html,未经允许,请勿转载。