我正在尝试在我正在分发的包中创建所需的库。它需要SciPy和NumPy库。 在开发过程中,我使用
安装了两者apt-get install scipy
安装了SciPy 0.9.0和NumPy 1.5.1,并且运行正常。
我想使用pip install
执行相同的操作 - 以便能够在我自己的包的setup.py中指定依赖项。
问题是,当我尝试:
pip install 'numpy==1.5.1'
它工作正常。
但是
pip install 'scipy==0.9.0'
失败,
raise self.notfounderror(self.notfounderror.__doc__)
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.
如何让它发挥作用?
答案 0 :(得分:320)
这在Ubuntu 14.04上对我有用:
sudo apt-get install libblas-dev liblapack-dev libatlas-base-dev gfortran
pip install scipy
答案 1 :(得分:71)
如果您使用的是Ubuntu,则需要libblas和liblapack开发包。
aptitude install libblas-dev liblapack-dev
pip install scipy
答案 2 :(得分:31)
我在答案中假设Linux经验;我发现让pip install scipy
顺利进行有三个先决条件。
转到此处:Installing SciPY
按照说明下载,构建和导出BLAS的env变量,然后LAPACK。小心不要盲目地切断'n'粘贴shell命令 - 根据你的体系结构等,你需要选择几行,你需要修复/添加它错误地假定的正确目录。好。
您可能需要的第三件事是 yum install numpy-f2py 或等效物。
哦,是的,最后,您可能需要 yum install gcc-gfortran ,因为上面的库是Fortran来源。
答案 3 :(得分:12)
由于之前关于使用yum进行安装的说明已经破坏,因此更新了有关像fedora这样的安装说明。我在“Amazon Linux AMI 2016.03”上测试了这个
libc_hidden_proto
答案 4 :(得分:6)
我正在开发一个依赖于numpy和scipy的项目。在Fedora 23的干净安装中,使用Python 3.4的python虚拟环境(也适用于Python 2.7),以及我的setup.py中的以下内容(在setup()
方法中)
setup_requires=[
'numpy',
],
install_requires=[
'numpy',
'scipy',
],
我发现我必须运行以下内容才能让pip install -e .
工作:
pip install --upgrade pip
和
sudo dnf install atlas-devel gcc-{c++,gfortran} subversion redhat-rpm-config
redhat-rpm-config
用于scipy使用redhat-hardened-cc1
而不是常规cc1
答案 5 :(得分:2)
这是什么操作系统?答案可能取决于所涉及的操作系统。但是,您似乎需要找到此BLAS库并进行安装。它似乎不是在PIP中(你必须手动完成),但是如果你安装它,它应该让你进行SciPy安装。
答案 6 :(得分:2)
在 Windows 上,使用python
3.5 ,我设法使用scipy
而不是}来安装conda
strong> pip
:
conda install scipy
答案 7 :(得分:0)
在我的情况下,升级pip就可以了。另外,我已经使用-U参数安装了scipy(将所有软件包升级到最后一个可用版本)