Linux vmi2545633.contaboserver.net 6.1.0-32-amd64 #1 SMP PREEMPT_DYNAMIC Debian 6.1.129-1 (2025-03-06) x86_64
Apache/2.4.62 (Debian)
Server IP : 127.0.0.1 & Your IP : 127.0.0.1
Domains :
Cant Read [ /etc/named.conf ]
User : www-data
Terminal
Auto Root
Create File
Create Folder
Localroot Suggester
Backdoor Destroyer
Readme
/
usr /
local /
lib /
python3.11 /
dist-packages /
scipy /
Delete
Unzip
Name
Size
Permission
Date
Action
__pycache__
[ DIR ]
drwxr-xr-x
2025-04-08 17:00
_lib
[ DIR ]
drwxr-xr-x
2025-04-08 17:00
cluster
[ DIR ]
drwxr-xr-x
2025-04-08 17:00
constants
[ DIR ]
drwxr-xr-x
2025-04-08 17:00
datasets
[ DIR ]
drwxr-xr-x
2025-04-08 17:00
differentiate
[ DIR ]
drwxr-xr-x
2025-04-08 17:00
fft
[ DIR ]
drwxr-xr-x
2025-04-08 17:00
fftpack
[ DIR ]
drwxr-xr-x
2025-04-08 17:00
integrate
[ DIR ]
drwxr-xr-x
2025-04-08 17:00
interpolate
[ DIR ]
drwxr-xr-x
2025-04-08 17:00
io
[ DIR ]
drwxr-xr-x
2025-04-08 17:00
linalg
[ DIR ]
drwxr-xr-x
2025-04-08 17:00
misc
[ DIR ]
drwxr-xr-x
2025-04-08 17:00
ndimage
[ DIR ]
drwxr-xr-x
2025-04-08 17:00
odr
[ DIR ]
drwxr-xr-x
2025-04-08 17:00
optimize
[ DIR ]
drwxr-xr-x
2025-04-08 17:00
signal
[ DIR ]
drwxr-xr-x
2025-04-08 17:00
sparse
[ DIR ]
drwxr-xr-x
2025-04-08 17:00
spatial
[ DIR ]
drwxr-xr-x
2025-04-08 17:00
special
[ DIR ]
drwxr-xr-x
2025-04-08 17:00
stats
[ DIR ]
drwxr-xr-x
2025-04-08 17:00
__config__.py
5.08
KB
-rw-r--r--
2025-04-08 17:00
__init__.py
4.06
KB
-rw-r--r--
2025-04-08 17:00
_distributor_init.py
611
B
-rw-r--r--
2025-04-08 17:00
conftest.py
21.51
KB
-rw-r--r--
2025-04-08 17:00
version.py
318
B
-rw-r--r--
2025-04-08 17:00
Save
Rename
# This file is generated by SciPy's build process # It contains system_info results at the time of building this package. from enum import Enum __all__ = ["show"] _built_with_meson = True class DisplayModes(Enum): stdout = "stdout" dicts = "dicts" def _cleanup(d): """ Removes empty values in a `dict` recursively This ensures we remove values that Meson could not provide to CONFIG """ if isinstance(d, dict): return { k: _cleanup(v) for k, v in d.items() if v != '' and _cleanup(v) != '' } else: return d CONFIG = _cleanup( { "Compilers": { "c": { "name": "gcc", "linker": r"ld.bfd", "version": "10.2.1", "commands": r"cc", "args": r"", "linker args": r"", }, "cython": { "name": r"cython", "linker": r"cython", "version": r"3.0.12", "commands": r"cython", "args": r"", "linker args": r"", }, "c++": { "name": "gcc", "linker": r"ld.bfd", "version": "10.2.1", "commands": r"c++", "args": r"", "linker args": r"", }, "fortran": { "name": "gcc", "linker": r"ld.bfd", "version": "10.2.1", "commands": r"gfortran", "args": r"", "linker args": r"", }, "pythran": { "version": r"0.17.0", "include directory": r"../../tmp/pip-build-env-cr_xmj2s/overlay/lib/python3.11/site-packages/pythran" }, }, "Machine Information": { "host": { "cpu": r"x86_64", "family": r"x86_64", "endian": r"little", "system": r"linux", }, "build": { "cpu": r"x86_64", "family": r"x86_64", "endian": r"little", "system": r"linux", }, "cross-compiled": bool("False".lower().replace('false', '')), }, "Build Dependencies": { "blas": { "name": "scipy-openblas", "found": bool("True".lower().replace('false', '')), "version": "0.3.28", "detection method": "pkgconfig", "include directory": r"/opt/_internal/cpython-3.11.10/lib/python3.11/site-packages/scipy_openblas32/include", "lib directory": r"/opt/_internal/cpython-3.11.10/lib/python3.11/site-packages/scipy_openblas32/lib", "openblas configuration": r"OpenBLAS 0.3.28 DYNAMIC_ARCH NO_AFFINITY Haswell MAX_THREADS=64", "pc file directory": r"/project", }, "lapack": { "name": "scipy-openblas", "found": bool("True".lower().replace('false', '')), "version": "0.3.28", "detection method": "pkgconfig", "include directory": r"/opt/_internal/cpython-3.11.10/lib/python3.11/site-packages/scipy_openblas32/include", "lib directory": r"/opt/_internal/cpython-3.11.10/lib/python3.11/site-packages/scipy_openblas32/lib", "openblas configuration": r"OpenBLAS 0.3.28 DYNAMIC_ARCH NO_AFFINITY Haswell MAX_THREADS=64", "pc file directory": r"/project", }, "pybind11": { "name": "pybind11", "version": "2.13.6", "detection method": "config-tool", "include directory": r"unknown", }, }, "Python Information": { "path": r"/opt/python/cp311-cp311/bin/python", "version": "3.11", }, } ) def _check_pyyaml(): import yaml return yaml def show(mode=DisplayModes.stdout.value): """ Show libraries and system information on which SciPy was built and is being used Parameters ---------- mode : {`'stdout'`, `'dicts'`}, optional. Indicates how to display the config information. `'stdout'` prints to console, `'dicts'` returns a dictionary of the configuration. Returns ------- out : {`dict`, `None`} If mode is `'dicts'`, a dict is returned, else None Notes ----- 1. The `'stdout'` mode will give more readable output if ``pyyaml`` is installed """ if mode == DisplayModes.stdout.value: try: # Non-standard library, check import yaml = _check_pyyaml() print(yaml.dump(CONFIG)) except ModuleNotFoundError: import warnings import json warnings.warn("Install `pyyaml` for better output", stacklevel=1) print(json.dumps(CONFIG, indent=2)) elif mode == DisplayModes.dicts.value: return CONFIG else: raise AttributeError( f"Invalid `mode`, use one of: {', '.join([e.value for e in DisplayModes])}" )