OXIESEC PANEL
- Current Dir:
/
/
usr
/
local
/
lib
/
python3.6
/
dist-packages
/
numpy
/
distutils
Server IP: 139.59.38.164
Upload:
Create Dir:
Name
Size
Modified
Perms
📁
..
-
10/28/2024 05:59:26 AM
rwxr-xr-x
📄
__config__.py
2.73 KB
10/28/2024 05:59:24 AM
rw-r--r--
📄
__init__.py
1.52 KB
10/28/2024 05:59:24 AM
rw-r--r--
📁
__pycache__
-
10/28/2024 05:59:26 AM
rwxr-xr-x
📄
_shell_utils.py
2.55 KB
10/28/2024 05:59:24 AM
rw-r--r--
📄
ccompiler.py
26.72 KB
10/28/2024 05:59:24 AM
rw-r--r--
📁
command
-
10/28/2024 05:59:26 AM
rwxr-xr-x
📄
conv_template.py
9.33 KB
10/28/2024 05:59:24 AM
rw-r--r--
📄
core.py
7.97 KB
10/28/2024 05:59:24 AM
rw-r--r--
📄
cpuinfo.py
22.13 KB
10/28/2024 05:59:24 AM
rw-r--r--
📄
exec_command.py
10.11 KB
10/28/2024 05:59:24 AM
rw-r--r--
📄
extension.py
3.28 KB
10/28/2024 05:59:24 AM
rw-r--r--
📁
fcompiler
-
10/28/2024 05:59:26 AM
rwxr-xr-x
📄
from_template.py
7.78 KB
10/28/2024 05:59:24 AM
rw-r--r--
📄
intelccompiler.py
4.13 KB
10/28/2024 05:59:24 AM
rw-r--r--
📄
lib2def.py
3.56 KB
10/28/2024 05:59:24 AM
rw-r--r--
📄
line_endings.py
1.98 KB
10/28/2024 05:59:24 AM
rw-r--r--
📄
log.py
2.5 KB
10/28/2024 05:59:24 AM
rw-r--r--
📁
mingw
-
10/28/2024 05:59:26 AM
rwxr-xr-x
📄
mingw32ccompiler.py
24.64 KB
10/28/2024 05:59:24 AM
rw-r--r--
📄
misc_util.py
83.42 KB
10/28/2024 05:59:24 AM
rw-r--r--
📄
msvc9compiler.py
2.14 KB
10/28/2024 05:59:24 AM
rw-r--r--
📄
msvccompiler.py
1.88 KB
10/28/2024 05:59:24 AM
rw-r--r--
📄
npy_pkg_config.py
12.67 KB
10/28/2024 05:59:24 AM
rw-r--r--
📄
numpy_distribution.py
634 bytes
10/28/2024 05:59:24 AM
rw-r--r--
📄
pathccompiler.py
713 bytes
10/28/2024 05:59:24 AM
rw-r--r--
📄
setup.py
565 bytes
10/28/2024 05:59:24 AM
rw-r--r--
📄
system_info.py
102.87 KB
10/28/2024 05:59:24 AM
rw-r--r--
📁
tests
-
10/28/2024 05:59:26 AM
rwxr-xr-x
📄
unixccompiler.py
4.89 KB
10/28/2024 05:59:24 AM
rw-r--r--
Editing: __config__.py
Close
# This file is generated by numpy's setup.py # It contains system_info results at the time of building this package. __all__ = ["get_info","show"] import os import sys extra_dll_dir = os.path.join(os.path.dirname(__file__), '.libs') if sys.platform == 'win32' and os.path.isdir(extra_dll_dir): if sys.version_info >= (3, 8): os.add_dll_directory(extra_dll_dir) else: os.environ.setdefault('PATH', '') os.environ['PATH'] += os.pathsep + extra_dll_dir blas_mkl_info={} blis_info={} openblas_info={'libraries': ['openblas', 'openblas'], 'library_dirs': ['/usr/local/lib'], 'language': 'c', 'define_macros': [('HAVE_CBLAS', None)]} blas_opt_info={'libraries': ['openblas', 'openblas'], 'library_dirs': ['/usr/local/lib'], 'language': 'c', 'define_macros': [('HAVE_CBLAS', None)]} lapack_mkl_info={} openblas_lapack_info={'libraries': ['openblas', 'openblas'], 'library_dirs': ['/usr/local/lib'], 'language': 'c', 'define_macros': [('HAVE_CBLAS', None)]} lapack_opt_info={'libraries': ['openblas', 'openblas'], 'library_dirs': ['/usr/local/lib'], 'language': 'c', 'define_macros': [('HAVE_CBLAS', None)]} def get_info(name): g = globals() return g.get(name, g.get(name + "_info", {})) def show(): """ 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 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'] """ for name,info_dict in globals().items(): if name[0] == "_" or type(info_dict) is not type({}): continue print(name + ":") if not info_dict: print(" NOT AVAILABLE") for k,v in info_dict.items(): v = str(v) if k == "sources" and len(v) > 200: v = v[:60] + " ...\n... " + v[-60:] print(" %s = %s" % (k,v))