I have two versions of python
on my RedHat 6 machine: 2.7.8
that came with the system originally and 2.7.10
that I've installed using miniconda
for a project. I have to use the newer version to run some demo code for another project. The demo script produced this error:
ImportError: No module named scipy.sparse
Running pip install scipy
failed with a bunch of warnings and then this:
numpy.distutils.system_info.NotFoundError: no lapack/blas resources found
numpy
is already installed. That is, I get Requirement already satisfied
when trying to pip install numpy
.
The yum install
command recommended on the SciPy install page completed fine but did not help, probably because this python version is installed at a non-default location.
Same result after building blas
and lapack
from source as described here
How do I get scipy
to install properly?
Thx