Hi,

On Mon, Feb 8, 2016 at 3:29 AM, Daπid <davidmen...@gmail.com> wrote:
>
> On 6 February 2016 at 21:26, Matthew Brett <matthew.br...@gmail.com> wrote:
>>
>>
>> pip install -f https://nipy.bic.berkeley.edu/manylinux numpy scipy
>> python -c 'import numpy; numpy.test()'
>> python -c 'import scipy; scipy.test()'
>
>
>
> All the tests pass on my Fedora 23 with Python 2.7, but it seems to be
> linking to the system openblas:
>
> numpy.show_config()
> lapack_opt_info:
>     libraries = ['openblas']
>     library_dirs = ['/usr/local/lib']
>     define_macros = [('HAVE_CBLAS', None)]
>     language = c

numpy.show_config() shows the places that numpy found the libraries at
build time.  In the case of the manylinux wheel builds, I put openblas
at /usr/local , but the place the wheel should be loading openblas
from is <numpy-install-locatin>/.libs.  For example, I think you'll
find that the numpy tests will still pass if you remove any openblas
installation at /usr/local .

Thanks for testing by the way,

Matthew
_______________________________________________
NumPy-Discussion mailing list
NumPy-Discussion@scipy.org
https://mail.scipy.org/mailman/listinfo/numpy-discussion

Reply via email to