Can SciPy be installed with p7 p7 distribution?

I am having a problem installing SciPy on a pre-built python distribution. The python distribution includes a program called p7 (by DATADVANCE). The python version is 2.7.7 and the current numpy version is 1.7.1.

NumPy is installed when it boots, but I also need SciPy to do what I want with the program.

I am trying to install using a setup.py script using:

p7 --run setup.py build

      

This is actually the same as:

python setup.py build

      

I tried to install SciPy versions 0.11.0, 0.12.0 and 0.13.0, but I still get the same error:

    non-existing path in 'scipy/sparse/csgraph': '/home/Ben/DATADVANCE/pSeven-3.1/python/lib/python2.7/site-packages/numpy/core/include'
    non-existing path in 'scipy/sparse/csgraph': '/home/Ben/DATADVANCE/pSeven-3.1/python/lib/python2.7/site-packages/numpy/core/include'
    non-existing path in 'scipy/sparse/csgraph': '/home/Ben/DATADVANCE/pSeven-3.1/python/lib/python2.7/site-packages/numpy/core/include'
    non-existing path in 'scipy/sparse/csgraph': '/home/Ben/DATADVANCE/pSeven-3.1/python/lib/python2.7/site-packages/numpy/core/include'
    non-existing path in 'scipy/spatial': '/home/Ben/DATADVANCE/pSeven-3.1/python/lib/python2.7/site-packages/numpy/core/include'       
    non-existing path in 'scipy/spatial': '/home/Ben/DATADVANCE/pSeven-3.1/python/lib/python2.7/site-packages/numpy/core/include'       
    non-existing path in 'scipy/special': '/home/Ben/DATADVANCE/pSeven-3.1/python/lib/python2.7/site-packages/numpy/core/include'       
    non-existing path in 'scipy/special': '/home/Ben/DATADVANCE/pSeven-3.1/python/lib/python2.7/site-packages/numpy/core/include'       
    !!! [Interpreter] PkgNotFound: Could not find file(s) ['/home/Ben/DATADVANCE/pSeven-3.1/python/lib/python2.7/site-packages/numpy/core/lib/npy-pkg-config/npymath.ini']

      

I checked the directory and folder "/home/Ben/DATADVANCE/pSeven-3.1/python/lib/python2.7/site-packages/numpy/core/lib/npy-pkg-config/" doesn "t exist at all.

I also tried to install versions 1.8.0 and 1.8.1 from NumPy using a setup.py script, but I am getting this error message:

    non-existing path in 'numpy/distutils': 'site.cfg'                      
    /bin/sh: svnversion: command not found                                  
    F2PY Version 2                                                          
    !!! [Interpreter] AttributeError: 'Configuration' object has no attribute 'add_define_macros'

      

In addition to this, I tried numpy 1.7.2 and it makes some progress but stops because it apparently needs python.h from the development python version which is not there.

I tried to inform the guys who support the program, but they haven't come back to me yet.

Is there anything I can do to get SciPy installed?

Thanks in advance Ben

+3


source to share


1 answer


As far as I know, the modern version of pSeven contains a fairly recent version (0.14.0) of SciPy. Here's the proof:



pSeven 5.2 screenshot showing the version of SciPy embedded into it

+4


source







All Articles