python 2.7 - Issues on installation of scipy and numpy -


i want install scipy on centos system. have installed numpy, blas, lapack

when installing scipy, following appear in red color:

zip_safe flag not set; analyzing archive contents... scipy.__init__: module references __file__ scipy._lib.setup: module references __file__ scipy.special.setup: module references __file__ scipy.special.generate_ufuncs: module references __file__ scipy.special._precompute.gammainc_asy: module references __file__ scipy.special._precompute.gammainc_data: module references __file__ scipy._build_utils._fortran: module references __file__ scipy.misc.common: module references __file__ scipy.sparse.setup: module references __file__ scipy.sparse.generate_sparsetools: module references __file__ scipy.sparse.linalg.dsolve.setup: module references __file__ scipy.integrate.setup: module references __file__ scipy.ndimage.setup: module references __file__ scipy.spatial.setup: module references __file__ scipy.linalg.setup: module references __file__ 

then installation ended following:

installed /root/anaconda2/lib/python2.7/site-packages/scipy-0.19.0-py2.7-linux-x86_64.egg processing dependencies scipy==0.19.0 finished processing dependencies scipy==0.19.0 

i succeed when importing numpy. however, failed when wanted import scipy.

[root@host scipy-0.19.0]# import scipy import: unable open image `scipy': directory @ error/blob.c/openblob/2589. 

if try install pip, shows following:

[root@host scipy-0.19.0]# pip install scipy requirement satisfied: scipy in /data/downloads/sailfish/scipy-0.19.0 


Comments

Popular posts from this blog

How to understand 2 main() functions after using uftrace to profile the C++ program? -

c# - Update a combobox from a presenter (MVP) -

How to put a lock and transaction on table using spring 4 or above using jdbcTemplate and annotations like @Transactional? -