Skip to content

Commit 4452927

Browse files
committed
apply suggestions to the wheel case
1 parent 05d6e61 commit 4452927

File tree

1 file changed

+6
-7
lines changed

1 file changed

+6
-7
lines changed

numpy/distutils/misc_util.py

Lines changed: 6 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -2365,13 +2365,12 @@ def show():
23652365
NumPy BLAS/LAPACK Installation Notes
23662366
------------------------------------
23672367
Installing a numpy wheel (e.g. ``pip install numpy``) includes
2368-
an embedded OpenBLAS library on every platform that has a wheel
2369-
available. (OpenBLAS implements the BLAS and LAPACK linear
2370-
algebra APIs.) In this case, ``show_config()`` reports
2371-
``library_dirs = ['/usr/local/lib']`` per the build time
2372-
configuration even if there's no libblas in that directory at
2373-
run time. The embedded OpenBLAS is a static link library
2374-
compiled with gcc/gfortran.
2368+
an OpenBLAS implementation of the BLAS and LAPACK linear algebra
2369+
APIs. In this case, ``library_dirs`` reports the build time
2370+
configuration; the OpenBLAS library is actually in
2371+
``site-packages/numpy.libs/`` or
2372+
``site-packages/numpy/.dylibs/`` and it's compiled with
2373+
gcc/gfortran.
23752374
23762375
Installing numpy from source (e.g.
23772376
``pip install numpy --no-binary numpy``) looks for BLAS and

0 commit comments

Comments
 (0)