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.
Notes
Classes specifying the information to be printed are defined in the
numpy.distutils.system_info
module.Information may include:
language
: language used to write the libraries (mostly C or f77)libraries
: names of libraries found in the systemlibrary_dirs
: directories containing the librariesinclude_dirs
: directories containing library header filessrc_dirs
: directories containing library source filesdefine_macros
: preprocessor macros used bydistutils.setup
Examples
>>> import numpy as np >>> np.show_config() blas_opt_info: language = c define_macros = [('HAVE_CBLAS', None)] libraries = ['openblas', 'openblas'] library_dirs = ['/usr/local/lib']