-
-
Notifications
You must be signed in to change notification settings - Fork 89
Description
Solution to issue cannot be found in the documentation.
- I checked the documentation.
Issue
Dear devs,
I am maintaining a feedstock for the ROOT project at https://github.com/conda-forge/root-feedstock . I am cross-posting an issue that was opened on our feedstock at conda-forge/root-feedstock#253 here as well, in the hope that you can help us identifying the problem better. The reproducer is simply
$: python -c "import tensorflow; import ROOT"
Which leads to a segfault. Inverting the import order instead works. The OP assumed this had to do with mismatching BLAS implementations used in the two libraries, which are notoriously fragile to manage.
I have done further digging, and I am now not fully convinced that is the real cause. From the stacktrace of OP, I could see that one of the first frames was pointing to the ZSTD_freeDDict symbol.
After a little bit more investigation, I have seen on my machine that preloading the zstd library of the conda environment makes the reproducer work, i.e.
LD_PRELOAD="/home/vpadulan/Programs/mambaforge/envs/root-63602/lib/libzstd.so" python -c "import tensorflow; import ROOT"
And I further noticed that there seems to be some interaction with the allocator libraries used internally by either tensorflow or ROOT, respectively libabsl_malloc_internal.so and libtbbmalloc.so. That is, I have run the python command within a gdb session, then I get the list of shared libraries loaded via info shared at the end of the gdb run. I see the three following scenarios:
- gdb --args python -c "import tensorflow; import ROOT" (segfault)
The loading order of the three libraries is libabsl_malloc_internal, libzstd, libtbbmalloc
- gdb --args python -c "import ROOT; import tensorflow" (no segfault)
The loading order of the three libraries is libsztd, libtbbmalloc, libabsl_malloc_internal
- LD_PRELOAD="/home/vpadulan/Programs/mambaforge/envs/root-63602/lib/libzstd.so" gdb --args python -c "import tensorflow; import ROOT" (no segfault)
The loading order of the three libraries is libzstd, libabsl_malloc_internal, libtbbmalloc
So for some reason that I do not yet understand, it looks like as long as libzstd is loaded before libabsl_malloc_internal, there is no segfault.
Does any of the above ring any bell to you? Any suggestion or guidance on how to debug would be extremely appreciated!
Installed packages
# packages in environment at /home/vpadulan/Programs/mambaforge/envs/root-63602:
#
# Name Version Build Channel
_openmp_mutex 4.5 4_kmp_llvm conda-forge
_x86_64-microarch-level 3 2_x86_64_v3 conda-forge
absl-py 2.3.1 pyhd8ed1ab_0 conda-forge
adwaita-icon-theme 48.1 unix_1 conda-forge
anyio 4.10.0 pyhe01879c_0 conda-forge
argon2-cffi 25.1.0 pyhd8ed1ab_0 conda-forge
argon2-cffi-bindings 25.1.0 py311h49ec1c0_0 conda-forge
arrow 1.3.0 pyhd8ed1ab_1 conda-forge
asttokens 3.0.0 pyhd8ed1ab_1 conda-forge
astunparse 1.6.3 pyhd8ed1ab_3 conda-forge
async-lru 2.0.5 pyh29332c3_0 conda-forge
at-spi2-atk 2.38.0 h0630a04_3 conda-forge
at-spi2-core 2.40.3 h0630a04_0 conda-forge
atk-1.0 2.38.0 h04ea711_2 conda-forge
attrs 25.3.0 pyh71513ae_0 conda-forge
babel 2.17.0 pyhd8ed1ab_0 conda-forge
beautifulsoup4 4.13.5 pyha770c72_0 conda-forge
binutils 2.44 h4852527_1 conda-forge
binutils_impl_linux-64 2.44 h4bf12b8_1 conda-forge
binutils_linux-64 2.44 h4852527_1 conda-forge
bleach 6.2.0 pyh29332c3_4 conda-forge
bleach-with-css 6.2.0 h82add2a_4 conda-forge
brotli-python 1.1.0 py311hfdbb021_3 conda-forge
bzip2 1.0.8 h4bc722e_7 conda-forge
c-ares 1.34.5 hb9d3cd8_0 conda-forge
c-compiler 1.11.0 h4d9bdce_0 conda-forge
ca-certificates 2025.8.3 hbd8a1cb_0 conda-forge
cached-property 1.5.2 hd8ed1ab_1 conda-forge
cached_property 1.5.2 pyha770c72_1 conda-forge
cairo 1.18.4 h3394656_0 conda-forge
certifi 2025.8.3 pyhd8ed1ab_0 conda-forge
cffi 1.17.1 py311hf29c0ef_0 conda-forge
cfitsio 4.6.2 ha0b56bc_1 conda-forge
charset-normalizer 3.4.3 pyhd8ed1ab_0 conda-forge
colorama 0.4.6 pyhd8ed1ab_1 conda-forge
comm 0.2.3 pyhe01879c_0 conda-forge
compilers 1.11.0 ha770c72_0 conda-forge
conda-gcc-specs 14.3.0 hb991d5c_4 conda-forge
cuda-crt-tools 12.9.86 ha770c72_2 conda-forge
cuda-cudart 12.9.79 h5888daf_0 conda-forge
cuda-cudart_linux-64 12.9.79 h3f2d84a_0 conda-forge
cuda-cupti 12.9.79 h9ab20c4_0 conda-forge
cuda-nvcc-tools 12.9.86 he02047a_2 conda-forge
cuda-nvrtc 12.9.86 h5888daf_0 conda-forge
cuda-nvtx 12.9.79 h5888daf_0 conda-forge
cuda-nvvm-tools 12.9.86 h4bc722e_2 conda-forge
cuda-version 12.9 h4f385c5_3 conda-forge
cudnn 9.12.0.46 hbcb9cd8_0 conda-forge
cxx-compiler 1.11.0 hfcd1e18_0 conda-forge
davix 0.8.10 hc08bb4d_0 conda-forge
dbus 1.16.2 h3c4dab8_0 conda-forge
debugpy 1.8.16 py311hc665b79_0 conda-forge
decorator 5.2.1 pyhd8ed1ab_0 conda-forge
defusedxml 0.7.1 pyhd8ed1ab_0 conda-forge
epoxy 1.5.10 h166bdaf_1 conda-forge
exceptiongroup 1.3.0 pyhd8ed1ab_0 conda-forge
executing 2.2.0 pyhd8ed1ab_0 conda-forge
fastjet-cxx 3.4.3 h614d5f5_2 conda-forge
fftw 3.3.10 nompi_hf1063bd_110 conda-forge
flatbuffers 24.12.23 h8f4948b_0 conda-forge
font-ttf-dejavu-sans-mono 2.37 hab24e00_0 conda-forge
font-ttf-inconsolata 3.000 h77eed37_0 conda-forge
font-ttf-source-code-pro 2.038 h77eed37_0 conda-forge
font-ttf-ubuntu 0.83 h77eed37_3 conda-forge
fontconfig 2.15.0 h7e30c49_1 conda-forge
fonts-conda-ecosystem 1 0 conda-forge
fonts-conda-forge 1 0 conda-forge
fortran-compiler 1.11.0 h9bea470_0 conda-forge
fqdn 1.5.1 pyhd8ed1ab_1 conda-forge
freetype 2.13.3 ha770c72_1 conda-forge
fribidi 1.0.10 h36c2ea0_0 conda-forge
ftgl 2.4.0 hbcb1f35_0 conda-forge
gast 0.6.0 pyhd8ed1ab_0 conda-forge
gcc 14.3.0 h76bdaa0_4 conda-forge
gcc_impl_linux-64 14.3.0 hd9e9e21_4 conda-forge
gcc_linux-64 14.3.0 h1382650_11 conda-forge
gdk-pixbuf 2.42.12 h2b0a6b4_3 conda-forge
gettext 0.25.1 h3f43e3d_1 conda-forge
gettext-tools 0.25.1 h3f43e3d_1 conda-forge
gfortran 14.3.0 he448592_4 conda-forge
gfortran_impl_linux-64 14.3.0 h7db7018_4 conda-forge
gfortran_linux-64 14.3.0 h30a37f7_11 conda-forge
giflib 5.2.2 hd590300_0 conda-forge
gl2ps 1.4.2 hae5d5c5_1 conda-forge
glew 2.1.0 h9c3ff4c_2 conda-forge
glib-tools 2.84.3 hf516916_0 conda-forge
google-pasta 0.2.0 pyhd8ed1ab_2 conda-forge
graphite2 1.3.14 hecca717_2 conda-forge
graphviz 13.1.2 h87b6fe6_0 conda-forge
grpcio 1.67.1 py311h9789449_2 conda-forge
gsl 2.7 he838d99_0 conda-forge
gsoap 2.8.123 h8dc497d_0 conda-forge
gtest 1.16.0 h84d6215_0 conda-forge
gtk3 3.24.43 h0c6a113_5 conda-forge
gts 0.7.6 h977cf35_4 conda-forge
gxx 14.3.0 he448592_4 conda-forge
gxx_impl_linux-64 14.3.0 he663afc_4 conda-forge
gxx_linux-64 14.3.0 ha7acb78_11 conda-forge
h11 0.16.0 pyhd8ed1ab_0 conda-forge
h2 4.3.0 pyhcf101f3_0 conda-forge
h5py 3.14.0 nompi_py311h7f87ba5_100 conda-forge
harfbuzz 11.4.4 h15599e2_0 conda-forge
hdf5 1.14.6 nompi_h6e4c0c1_103 conda-forge
hicolor-icon-theme 0.17 ha770c72_2 conda-forge
hpack 4.1.0 pyhd8ed1ab_0 conda-forge
httpcore 1.0.9 pyh29332c3_0 conda-forge
httpx 0.28.1 pyhd8ed1ab_0 conda-forge
hyperframe 6.1.0 pyhd8ed1ab_0 conda-forge
icu 75.1 he02047a_0 conda-forge
idna 3.10 pyhd8ed1ab_1 conda-forge
importlib-metadata 8.7.0 pyhe01879c_1 conda-forge
ipykernel 6.30.1 pyh82676e8_0 conda-forge
ipyparallel 9.0.1 pyh29332c3_0 conda-forge
ipython 9.5.0 pyhfa0c392_0 conda-forge
ipython_pygments_lexers 1.1.1 pyhd8ed1ab_0 conda-forge
isoduration 20.11.0 pyhd8ed1ab_1 conda-forge
jedi 0.19.2 pyhd8ed1ab_1 conda-forge
jinja2 3.1.6 pyhd8ed1ab_0 conda-forge
json5 0.12.1 pyhd8ed1ab_0 conda-forge
jsonpointer 3.0.0 py311h38be061_1 conda-forge
jsonschema 4.25.1 pyhe01879c_0 conda-forge
jsonschema-specifications 2025.4.1 pyh29332c3_0 conda-forge
jsonschema-with-format-nongpl 4.25.1 he01879c_0 conda-forge
jupyter-lsp 2.3.0 pyhcf101f3_0 conda-forge
jupyter_client 8.6.3 pyhd8ed1ab_1 conda-forge
jupyter_core 5.8.1 pyh31011fe_0 conda-forge
jupyter_events 0.12.0 pyh29332c3_0 conda-forge
jupyter_server 2.17.0 pyhcf101f3_0 conda-forge
jupyter_server_terminals 0.5.3 pyhd8ed1ab_1 conda-forge
jupyterlab 4.4.6 pyhd8ed1ab_0 conda-forge
jupyterlab_pygments 0.3.0 pyhd8ed1ab_2 conda-forge
jupyterlab_server 2.27.3 pyhd8ed1ab_1 conda-forge
keras 3.11.2 pyh753f3f9_0 conda-forge
kernel-headers_linux-64 3.10.0 he073ed8_18 conda-forge
keyutils 1.6.3 hb9d3cd8_0 conda-forge
krb5 1.21.3 h659f571_0 conda-forge
lark 1.2.2 pyhd8ed1ab_1 conda-forge
ld_impl_linux-64 2.44 h1423503_1 conda-forge
lerc 4.0.0 h0aef613_1 conda-forge
libabseil 20240722.0 cxx17_hbbce691_4 conda-forge
libaec 1.1.4 h3f801dc_0 conda-forge
libasprintf 0.25.1 h3f43e3d_1 conda-forge
libasprintf-devel 0.25.1 h3f43e3d_1 conda-forge
libblas 3.9.0 34_h59b9bed_openblas conda-forge
libcblas 3.9.0 34_he106b2a_openblas conda-forge
libcublas 12.9.1.4 h9ab20c4_0 conda-forge
libcudnn 9.12.0.46 hf7e9902_0 conda-forge
libcudnn-dev 9.12.0.46 h58dd1b1_0 conda-forge
libcufft 11.4.1.4 h5888daf_0 conda-forge
libcups 2.3.3 hb8b1518_5 conda-forge
libcurand 10.3.10.19 h9ab20c4_0 conda-forge
libcurl 8.14.1 h332b0f4_0 conda-forge
libcusolver 11.7.5.82 h9ab20c4_1 conda-forge
libcusparse 12.5.10.65 h5888daf_1 conda-forge
libdeflate 1.24 h86f0d12_0 conda-forge
libedit 3.1.20250104 pl5321h7949ede_0 conda-forge
libev 4.33 hd590300_2 conda-forge
libexpat 2.7.1 hecca717_0 conda-forge
libffi 3.4.6 h2dba641_1 conda-forge
libfreetype 2.13.3 ha770c72_1 conda-forge
libfreetype6 2.13.3 h48d6fc4_1 conda-forge
libgcc 15.1.0 h767d61c_4 conda-forge
libgcc-devel_linux-64 14.3.0 h85bb3a7_104 conda-forge
libgcc-ng 15.1.0 h69a702a_4 conda-forge
libgd 2.3.3 h6f5c62b_11 conda-forge
libgettextpo 0.25.1 h3f43e3d_1 conda-forge
libgettextpo-devel 0.25.1 h3f43e3d_1 conda-forge
libgfortran 15.1.0 h69a702a_4 conda-forge
libgfortran-ng 15.1.0 h69a702a_4 conda-forge
libgfortran5 15.1.0 hcea5267_4 conda-forge
libgl 1.7.0 ha4b6fd6_2 conda-forge
libglib 2.84.3 hf39c6af_0 conda-forge
libglu 9.0.3 h5888daf_1 conda-forge
libglvnd 1.7.0 ha4b6fd6_2 conda-forge
libglx 1.7.0 ha4b6fd6_2 conda-forge
libgomp 15.1.0 h767d61c_4 conda-forge
libgrpc 1.67.1 h25350d4_2 conda-forge
libhwloc 2.12.1 default_h3d81e11_1000 conda-forge
libiconv 1.18 h3b78370_2 conda-forge
libjpeg-turbo 3.1.0 hb9d3cd8_0 conda-forge
liblapack 3.9.0 34_h7ac8fdf_openblas conda-forge
libllvm18 18.1.8 default_hddf928d_9 conda-forge
liblzma 5.8.1 hb9d3cd8_2 conda-forge
libml_dtypes-headers 0.5.2 h707e725_0 conda-forge
libnghttp2 1.64.0 h161d5f1_0 conda-forge
libnsl 2.0.1 hb9d3cd8_1 conda-forge
libnvjitlink 12.9.86 h5888daf_1 conda-forge
libopenblas 0.3.30 pthreads_h94d23a6_2 conda-forge
libopengl 1.7.0 ha4b6fd6_2 conda-forge
libpng 1.6.50 h421ea60_1 conda-forge
libprotobuf 5.28.3 h6128344_1 conda-forge
libre2-11 2024.07.02 hbbce691_2 conda-forge
librsvg 2.58.4 he92a37e_3 conda-forge
libsanitizer 14.3.0 hd08acf3_4 conda-forge
libsodium 1.0.20 h4ab18f5_0 conda-forge
libsqlite 3.50.4 h0c1763c_0 conda-forge
libssh2 1.11.1 hcf80075_0 conda-forge
libstdcxx 15.1.0 h8f9b012_4 conda-forge
libstdcxx-devel_linux-64 14.3.0 h85bb3a7_104 conda-forge
libstdcxx-ng 15.1.0 h4852527_4 conda-forge
libtensorflow_cc 2.18.0 cuda126hc28a486_251 conda-forge
libtensorflow_framework 2.18.0 cuda126h3f80936_251 conda-forge
libtiff 4.7.0 h8261f1e_6 conda-forge
libuuid 2.38.1 h0b41bf4_0 conda-forge
libwebp-base 1.6.0 hd42ef1d_0 conda-forge
libxcb 1.17.0 h8a09558_0 conda-forge
libxcrypt 4.4.36 hd590300_1 conda-forge
libxkbcommon 1.11.0 he8b52b9_0 conda-forge
libxml2 2.13.8 h04c0eec_1 conda-forge
libzlib 1.3.1 hb9d3cd8_2 conda-forge
llvm-openmp 20.1.8 h4922eb0_2 conda-forge
llvmlite 0.44.0 py311h1741904_2 conda-forge
lz4-c 1.10.0 h5888daf_1 conda-forge
markdown 3.8.2 pyhd8ed1ab_0 conda-forge
markdown-it-py 4.0.0 pyhd8ed1ab_0 conda-forge
markupsafe 3.0.2 py311h2dc5d0c_1 conda-forge
matplotlib-inline 0.1.7 pyhd8ed1ab_1 conda-forge
mdurl 0.1.2 pyhd8ed1ab_1 conda-forge
metakernel 0.30.3 pyhd8ed1ab_0 conda-forge
mistune 3.1.3 pyh29332c3_0 conda-forge
ml_dtypes 0.4.0 py311h7db5c69_2 conda-forge
namex 0.1.0 pyhd8ed1ab_0 conda-forge
nbclient 0.10.2 pyhd8ed1ab_0 conda-forge
nbconvert-core 7.16.6 pyh29332c3_0 conda-forge
nbformat 5.10.4 pyhd8ed1ab_1 conda-forge
nccl 2.27.7.1 h49b9d9a_2 conda-forge
ncurses 6.5 h2d0b736_3 conda-forge
nest-asyncio 1.6.0 pyhd8ed1ab_1 conda-forge
nlohmann_json 3.12.0 h3f2d84a_0 conda-forge
notebook 7.4.5 pyhd8ed1ab_0 conda-forge
notebook-shim 0.2.4 pyhd8ed1ab_1 conda-forge
numba 0.61.2 py311h9806782_1 conda-forge
numpy 2.2.6 py311h5d046bc_0 conda-forge
openssl 3.5.2 h26f9b46_0 conda-forge
opt_einsum 3.4.0 pyhd8ed1ab_1 conda-forge
optree 0.17.0 py311hdf67eae_0 conda-forge
overrides 7.7.0 pyhd8ed1ab_1 conda-forge
packaging 25.0 pyh29332c3_1 conda-forge
pandocfilters 1.5.0 pyhd8ed1ab_0 conda-forge
pango 1.56.4 hadf4263_0 conda-forge
parso 0.8.5 pyhcf101f3_0 conda-forge
pcre 8.45 h9c3ff4c_0 conda-forge
pcre2 10.45 hc749103_0 conda-forge
pexpect 4.9.0 pyhd8ed1ab_1 conda-forge
pickleshare 0.7.5 pyhd8ed1ab_1004 conda-forge
pip 25.2 pyh8b19718_0 conda-forge
pixman 0.46.4 h54a6638_1 conda-forge
platformdirs 4.4.0 pyhcf101f3_0 conda-forge
portalocker 3.2.0 py311h38be061_0 conda-forge
prometheus_client 0.22.1 pyhd8ed1ab_0 conda-forge
prompt-toolkit 3.0.52 pyha770c72_0 conda-forge
protobuf 5.28.3 py311hfdbb021_0 conda-forge
psutil 7.0.0 py311h49ec1c0_1 conda-forge
pthread-stubs 0.4 hb9d3cd8_1002 conda-forge
ptyprocess 0.7.0 pyhd8ed1ab_1 conda-forge
pure_eval 0.2.3 pyhd8ed1ab_1 conda-forge
pycparser 2.22 pyh29332c3_1 conda-forge
pygments 2.19.2 pyhd8ed1ab_0 conda-forge
pysocks 1.7.1 pyha55dd90_7 conda-forge
pythia8 8.312 py311h9c709a4_304 conda-forge
python 3.11.13 h9e4cc4f_0_cpython conda-forge
python-dateutil 2.9.0.post0 pyhe01879c_2 conda-forge
python-fastjsonschema 2.21.2 pyhe01879c_0 conda-forge
python-flatbuffers 25.2.10 pyhbc23db3_0 conda-forge
python-json-logger 2.0.7 pyhd8ed1ab_0 conda-forge
python_abi 3.11 8_cp311 conda-forge
pytz 2025.2 pyhd8ed1ab_0 conda-forge
pyyaml 6.0.2 py311h2dc5d0c_2 conda-forge
pyzmq 27.0.2 py311h2315fbb_2 conda-forge
re2 2024.07.02 h9925aae_2 conda-forge
readline 8.2 h8c095d6_2 conda-forge
referencing 0.36.2 pyh29332c3_0 conda-forge
requests 2.32.5 pyhd8ed1ab_0 conda-forge
rfc3339-validator 0.1.4 pyhd8ed1ab_1 conda-forge
rfc3986-validator 0.1.1 pyh9f0ad1d_0 conda-forge
rfc3987-syntax 1.1.0 pyhe01879c_1 conda-forge
rich 14.1.0 pyhe01879c_0 conda-forge
root 6.36.02 py311hb8b4356_0 conda-forge
root_base 6.36.02 np2py311hae3e577_0 conda-forge
rpds-py 0.27.1 py311h902ca64_0 conda-forge
scitokens-cpp 1.1.3 h6ac2c77_0 conda-forge
send2trash 1.8.3 pyh0d859eb_1 conda-forge
setuptools 80.9.0 pyhff2d567_0 conda-forge
siscone 3.0.6 h614d5f5_2 conda-forge
six 1.17.0 pyhe01879c_1 conda-forge
snappy 1.2.2 h03e3b7b_0 conda-forge
sniffio 1.3.1 pyhd8ed1ab_1 conda-forge
soupsieve 2.8 pyhd8ed1ab_0 conda-forge
stack_data 0.6.3 pyhd8ed1ab_1 conda-forge
sysroot_linux-64 2.17 h0157908_18 conda-forge
tbb 2022.2.0 hb60516a_1 conda-forge
tensorboard 2.18.0 pyhd8ed1ab_1 conda-forge
tensorboard-data-server 0.7.0 py311hafd3f86_2 conda-forge
tensorflow 2.18.0 cuda126py311h673d4f6_251 conda-forge
tensorflow-base 2.18.0 cuda126py311h4dd1e35_251 conda-forge
tensorflow-estimator 2.18.0 cuda126py311hcf67771_251 conda-forge
termcolor 3.1.0 pyhd8ed1ab_0 conda-forge
terminado 0.18.1 pyh0d859eb_0 conda-forge
tinycss2 1.4.0 pyhd8ed1ab_0 conda-forge
tk 8.6.13 noxft_hd72426e_102 conda-forge
tomli 2.2.1 pyhe01879c_2 conda-forge
tornado 6.5.2 py311h49ec1c0_0 conda-forge
tqdm 4.67.1 pyhd8ed1ab_1 conda-forge
traitlets 5.14.3 pyhd8ed1ab_1 conda-forge
types-python-dateutil 2.9.0.20250822 pyhd8ed1ab_0 conda-forge
typing-extensions 4.15.0 h396c80c_0 conda-forge
typing_extensions 4.15.0 pyhcf101f3_0 conda-forge
typing_utils 0.1.0 pyhd8ed1ab_1 conda-forge
tzdata 2025b h78e105d_0 conda-forge
uri-template 1.3.0 pyhd8ed1ab_1 conda-forge
urllib3 2.5.0 pyhd8ed1ab_0 conda-forge
vdt 0.4.4 h59595ed_0 conda-forge
vector-classes 1.4.5 h297d8ca_0 conda-forge
wayland 1.24.0 h3e06ad9_0 conda-forge
wcwidth 0.2.13 pyhd8ed1ab_1 conda-forge
webcolors 24.11.1 pyhd8ed1ab_0 conda-forge
webencodings 0.5.1 pyhd8ed1ab_3 conda-forge
websocket-client 1.8.0 pyhd8ed1ab_1 conda-forge
werkzeug 3.1.3 pyhd8ed1ab_1 conda-forge
wheel 0.45.1 pyhd8ed1ab_1 conda-forge
wrapt 1.17.3 py311h49ec1c0_0 conda-forge
xkeyboard-config 2.45 hb9d3cd8_0 conda-forge
xorg-libice 1.1.2 hb9d3cd8_0 conda-forge
xorg-libsm 1.2.6 he73a12e_0 conda-forge
xorg-libx11 1.8.12 h4f16b4b_0 conda-forge
xorg-libxau 1.0.12 hb9d3cd8_0 conda-forge
xorg-libxcomposite 0.4.6 hb9d3cd8_2 conda-forge
xorg-libxcursor 1.2.3 hb9d3cd8_0 conda-forge
xorg-libxdamage 1.1.6 hb9d3cd8_0 conda-forge
xorg-libxdmcp 1.1.5 hb9d3cd8_0 conda-forge
xorg-libxext 1.3.6 hb9d3cd8_0 conda-forge
xorg-libxfixes 6.0.1 hb9d3cd8_0 conda-forge
xorg-libxft 2.3.9 h355ab9f_0 conda-forge
xorg-libxi 1.8.2 hb9d3cd8_0 conda-forge
xorg-libxinerama 1.1.5 h5888daf_1 conda-forge
xorg-libxpm 3.5.17 hb9d3cd8_1 conda-forge
xorg-libxrandr 1.5.4 hb9d3cd8_0 conda-forge
xorg-libxrender 0.9.12 hb9d3cd8_0 conda-forge
xorg-libxt 1.3.1 hb9d3cd8_0 conda-forge
xorg-libxtst 1.2.5 hb9d3cd8_3 conda-forge
xorg-xorgproto 2024.1 hb9d3cd8_1 conda-forge
xrootd 5.8.4 py311h2271bf8_0 conda-forge
xxhash 0.8.3 hb47aa4a_0 conda-forge
yaml 0.2.5 h280c20c_3 conda-forge
zeromq 4.3.5 h3b0a872_7 conda-forge
zipp 3.23.0 pyhd8ed1ab_0 conda-forge
zlib 1.3.1 hb9d3cd8_2 conda-forge
zstandard 0.23.0 py311h49ec1c0_3 conda-forge
zstd 1.5.7 hb8e6e7a_2 conda-forgeEnvironment info
active environment : root-63602
active env location : /home/vpadulan/Programs/mambaforge/envs/root-63602
shell level : 1
user config file : /home/vpadulan/.condarc
populated config files : /home/vpadulan/Programs/mambaforge/.condarc
/home/vpadulan/.condarc
conda version : 22.11.1
conda-build version : not installed
python version : 3.9.16.final.0
virtual packages : __archspec=1=x86_64
__cuda=12.9=0
__glibc=2.41=0
__linux=6.15.10=0
__unix=0=0
base environment : /home/vpadulan/Programs/mambaforge (writable)
conda av data dir : /home/vpadulan/Programs/mambaforge/etc/conda
conda av metadata url : None
channel URLs : https://conda.anaconda.org/conda-forge/linux-64
https://conda.anaconda.org/conda-forge/noarch
package cache : /home/vpadulan/Programs/mambaforge/pkgs
/home/vpadulan/.conda/pkgs
envs directories : /home/vpadulan/Programs/mambaforge/envs
/home/vpadulan/.conda/envs
platform : linux-64
user-agent : conda/22.11.1 requests/2.28.2 CPython/3.9.16 Linux/6.15.10-200.fc42.x86_64 fedora/42 glibc/2.41
UID:GID : 1000:1000
netrc file : None
offline mode : False