diff options
author | Jerry Morrison <1fish2@users.noreply.github.com> | 2021-07-12 00:45:55 -0700 |
---|---|---|
committer | Jerry Morrison <1fish2@users.noreply.github.com> | 2021-07-12 00:45:55 -0700 |
commit | 445292716b0d43b97a6bf7646c424c8b0a2ec435 (patch) | |
tree | 14e06660d9576251d3a0e8020df7fb7036e3e986 /numpy/distutils/misc_util.py | |
parent | 05d6e615095e04c5f3bc6e9256882bcdd2950f12 (diff) | |
download | numpy-445292716b0d43b97a6bf7646c424c8b0a2ec435.tar.gz |
apply suggestions to the wheel case
Diffstat (limited to 'numpy/distutils/misc_util.py')
-rw-r--r-- | numpy/distutils/misc_util.py | 13 |
1 files changed, 6 insertions, 7 deletions
diff --git a/numpy/distutils/misc_util.py b/numpy/distutils/misc_util.py index 68d5bdfe9..53b2ba56b 100644 --- a/numpy/distutils/misc_util.py +++ b/numpy/distutils/misc_util.py @@ -2365,13 +2365,12 @@ def generate_config_py(target): NumPy BLAS/LAPACK Installation Notes ------------------------------------ Installing a numpy wheel (e.g. ``pip install numpy``) includes - an embedded OpenBLAS library on every platform that has a wheel - available. (OpenBLAS implements the BLAS and LAPACK linear - algebra APIs.) In this case, ``show_config()`` reports - ``library_dirs = ['/usr/local/lib']`` per the build time - configuration even if there's no libblas in that directory at - run time. The embedded OpenBLAS is a static link library - compiled with gcc/gfortran. + an OpenBLAS implementation of the BLAS and LAPACK linear algebra + APIs. In this case, ``library_dirs`` reports the build time + configuration; the OpenBLAS library is actually in + ``site-packages/numpy.libs/`` or + ``site-packages/numpy/.dylibs/`` and it's compiled with + gcc/gfortran. Installing numpy from source (e.g. ``pip install numpy --no-binary numpy``) looks for BLAS and |