I have Python 2.7 running and trying to install scipy by using easy_install which returns following errors:
Searching for scipyReading http://pypi.python.org/simple/scipy/Reading http://www.scipy.orgReading http://sourceforge.net/project/showfiles.php?group_id=27747&package_id=19531Reading http://new.scipy.org/Wiki/DownloadBest match: scipy 0.11.0Downloading http://pypi.python.org/packages/source/s/scipy/scipy-0.11.0.zip#md5=40b700ddde9ddab643b640fff7a9d753Processing scipy-0.11.0.zipRunning scipy-0.11.0/setup.py -q bdist_egg --dist-dir /tmp/easy_install-49BQSz/scipy-0.11.0/egg-dist-tmp-KMjwKyRunning from scipy source directory./usr/lib64/python2.7/site-packages/numpy/distutils/system_info.py:1425: UserWarning: Atlas (http://math-atlas.sourceforge.net/) libraries not found. Directories to search for the libraries can be specified in the numpy/distutils/site.cfg file (section [atlas]) or by setting the ATLAS environment variable. warnings.warn(AtlasNotFoundError.__doc__)/usr/lib64/python2.7/site-packages/numpy/distutils/system_info.py:1434: UserWarning: 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. warnings.warn(BlasNotFoundError.__doc__)/usr/lib64/python2.7/site-packages/numpy/distutils/system_info.py:1437: UserWarning: Blas (http://www.netlib.org/blas/) sources not found. Directories to search for the sources can be specified in the numpy/distutils/site.cfg file (section [blas_src]) or by setting the BLAS_SRC environment variable. warnings.warn(BlasSrcNotFoundError.__doc__)error: 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.
So I installed Blas and Atalas by executing
apt-get install blasapt-get install atlas
However, the easy_install errors don't disappear.
Thanks!