On this page
numpy.show_config
- numpy.show_config()[source]
- 
    Show libraries in the system on which NumPy was built. Print information about various resources (libraries, library directories, include directories, etc.) in the system on which NumPy was built. See also - get_include
- 
       Returns the directory containing NumPy C header files. 
 NotesClasses specifying the information to be printed are defined in the numpy.distutils.system_infomodule.Information may include: - language: language used to write the libraries (mostly C or f77)
- libraries: names of libraries found in the system
- library_dirs: directories containing the libraries
- include_dirs: directories containing library header files
- src_dirs: directories containing library source files
- define_macros: preprocessor macros used by- distutils.setup
 Examples>>> np.show_config() blas_opt_info: language = c define_macros = [('HAVE_CBLAS', None)] libraries = ['openblas', 'openblas'] library_dirs = ['/usr/local/lib']
© 2005–2020 NumPy Developers
Licensed under the 3-clause BSD License.
 https://numpy.org/doc/1.19/reference/generated/numpy.show_config.html