我试图在我发布的包中创建必需的库,它需要 SciPy和 笨蛋库。 在开发时,我使用
apt-get install scipy
它安装了 SciPy0.9.0和 NumPy1.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.
我怎么才能让它起作用?