我正在尝试在要分发的程序包中创建所需的库。它需要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.
我该如何工作?
blas-devel
和安装lapack-devel
。这在文档中未指定,但是如果要使用PIP安装,则必须完成此操作。
numpy=1.5.1
代替numpy==1.5.1
(double equals)一起使用吗?