I'm trying to create required libraries in a package i'mI'm distributing. It It requires both the scipySciPy and numpyNumPy libraries. While developing, I installed bothboth using
apt-get install scipy which installed scipySciPy 0.9.0 and numpyNumPy 1.5.1, and it worked fine.
I would like to do the same using pip installpip install - in order to be able to specify dependencies in a setup.py of my own package.
ProblemThe problem is, when iI try:
pip install 'numpy==1.5.1' it works fine. but
But then
pip install 'scipy==0.9.0' fails miserably, with
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. How do I get it to work?