CADET Introduction System Error: Missing dll

Hi everyone,

I am following the CADET introduction tutorial and am getting three system errors missing the following dll:

  • liblapack.dll

  • umfpack.dll

  • libblas.dll

The code then says:

CompletedProcess(args=['C:/ProgramData/anaconda3/bin/cadet-cli.exe', 'model.h5'], returncode=3221225781, stdout=b'', stderr=b'')
---------------------------------------------------------------------------
Exception                                 Traceback (most recent call last)
Cell In[4], line 13
     11 else:
     12     print(data)
---> 13     raise Exception("Simulation failed")

Exception: Simulation failed

I installed the CADET core simulator via pre-built binaries in the conda-forge channel. It was my first time building an environment, so it may be best to delete everything and start over. Would greatly appreciate any input on what to do next :sweat_smile:

Hey Shubhra,

that’s a very surprising error, given that you’ve installed from conda. Whenever I run into such an error I re-build my environment. We’ve created a guide that covers good practices for setting up and managing environments and I’d highly recommend creating an environment.yml file by hand based on the template in the guide and using that to re-create your environment.

Hi,
Thanks for your quick response. Following your recommendation and the linked guide, I created a new environment using a .yml text file (below).

name: cadet
channels:
  - conda-forge
dependencies:
  - python=3.11  # currently recommended for cadet-process installations 
  - pip
  - cadet
  - jupyterlab  # optional, to run jupyter notebooks
  - openpyxl    # optional, to open .xlsx files
#  - git         # optional, for version control
  - pip:
      - cadet-process
      - cadet-python

In the anaconda prompt, I created and activated this new environment, then opened jupyter notebook within this environment and ran my code in the browser that popped up. I no longer get the missing dll system errors but there is something else:

I am following this tutorial and copied all the code from here - CADET Introduction — CADET

How should I move forward?

That’s great! A new error message is progress. :smiley:

That HDF5 error is familiar. You can see if that helps.

Then, regarding the Tutorial, we really recommend following this Tutorial and are in the process of cleaning up our web-presence.

Hi again :slight_smile:

So, I uninstalled h5py and installed version 3.6.0, but the mismatch error persists.

Warning! ***HDF5 library version mismatched error***
...
Headers are 1.10.6, library is 1.14.3

Seeing this, I tried to install the specific version of hdf5 that the error says I was missing:

conda install -c anaconda hdf5=1.10.6

But this did not work either and I got this in the output:

Package babel conflicts for:
jupyterlab -> jupyterlab_server[version='>=2.19,<3'] -> babel[version='>=2.10']
jupyterlab_server -> babel[version='>=2.10']The following specifications were found to be incompatible with your system:

  - feature:/win-64::__win==0=0
  - feature:|@/win-64::__win==0=0
  - ipykernel -> __win
  - ipython -> __win
  - jupyter_server -> send2trash[version='>=1.8.2'] -> __win
  - jupyter_server_terminals -> terminado[version='>=0.8.3'] -> __win
  - jupyterlab -> ipython -> __win
  - send2trash -> __win
  - terminado -> __win
  - urllib3 -> pysocks[version='>=1.5.6,<2.0,!=1.5.7'] -> __win
  - win_inet_pton -> __win

Your installed version is: 0

I am still getting the mismatched error and don’t know what else to try. I am on python version 3.10 as recommended.

SOS :sweat_smile:

Hi Shubhra,

can you please send me the output of conda env export and pip freeze?

Yes here you go:

(cadet) C:\Users\rastogsh\OneDrive - Boehringer Ingelheim\Python Files>conda env export
name: cadet
channels:
  - conda-forge
  - defaults
dependencies:
  - anyio=4.2.0=pyhd8ed1ab_0
  - argon2-cffi=23.1.0=pyhd8ed1ab_0
  - argon2-cffi-bindings=21.2.0=py310h8d17308_4
  - arrow=1.3.0=pyhd8ed1ab_0
  - asttokens=2.4.1=pyhd8ed1ab_0
  - async-lru=2.0.4=pyhd8ed1ab_0
  - attrs=23.2.0=pyh71513ae_0
  - babel=2.14.0=pyhd8ed1ab_0
  - beautifulsoup4=4.12.3=pyha770c72_0
  - bleach=6.1.0=pyhd8ed1ab_0
  - brotli-python=1.1.0=py310h00ffb61_1
  - bzip2=1.0.8=hcfcfb64_5
  - ca-certificates=2023.11.17=h56e8100_0
  - cached-property=1.5.2=hd8ed1ab_1
  - cached_property=1.5.2=pyha770c72_1
  - cadet=4.4.0=hdf1ca3b_1
  - certifi=2023.11.17=pyhd8ed1ab_0
  - cffi=1.16.0=py310h8d17308_0
  - charset-normalizer=3.3.2=pyhd8ed1ab_0
  - colorama=0.4.6=pyhd8ed1ab_0
  - comm=0.2.1=pyhd8ed1ab_0
  - debugpy=1.8.0=py310h00ffb61_1
  - decorator=5.1.1=pyhd8ed1ab_0
  - defusedxml=0.7.1=pyhd8ed1ab_0
  - entrypoints=0.4=pyhd8ed1ab_0
  - et_xmlfile=1.1.0=pyhd8ed1ab_0
  - exceptiongroup=1.2.0=pyhd8ed1ab_2
  - executing=2.0.1=pyhd8ed1ab_0
  - fqdn=1.5.1=pyhd8ed1ab_0
  - hdf5=1.14.3=nompi_h73e8ff5_100
  - idna=3.6=pyhd8ed1ab_0
  - importlib-metadata=7.0.1=pyha770c72_0
  - importlib_metadata=7.0.1=hd8ed1ab_0
  - importlib_resources=6.1.1=pyhd8ed1ab_0
  - intel-openmp=2024.0.0=h57928b3_49840
  - ipykernel=6.29.0=pyha63f2e9_0
  - ipython=8.20.0=pyh7428d3b_0
  - isoduration=20.11.0=pyhd8ed1ab_0
  - jedi=0.19.1=pyhd8ed1ab_0
  - jinja2=3.1.3=pyhd8ed1ab_0
  - json5=0.9.14=pyhd8ed1ab_0
  - jsonpointer=2.4=py310h5588dad_3
  - jsonschema=4.21.1=pyhd8ed1ab_0
  - jsonschema-specifications=2023.12.1=pyhd8ed1ab_0
  - jsonschema-with-format-nongpl=4.21.1=pyhd8ed1ab_0
  - jupyter-lsp=2.2.2=pyhd8ed1ab_0
  - jupyter_client=8.6.0=pyhd8ed1ab_0
  - jupyter_core=5.7.1=py310h5588dad_0
  - jupyter_events=0.9.0=pyhd8ed1ab_0
  - jupyter_server=2.12.5=pyhd8ed1ab_0
  - jupyter_server_terminals=0.5.2=pyhd8ed1ab_0
  - jupyterlab=4.0.11=pyhd8ed1ab_0
  - jupyterlab_pygments=0.3.0=pyhd8ed1ab_0
  - jupyterlab_server=2.25.2=pyhd8ed1ab_0
  - krb5=1.21.2=heb0366b_0
  - libaec=1.1.2=h63175ca_1
  - libblas=3.9.0=21_win64_mkl
  - libcblas=3.9.0=21_win64_mkl
  - libcurl=8.5.0=hd5e4a3a_0
  - libffi=3.4.2=h8ffe710_5
  - libhwloc=2.9.3=default_haede6df_1009
  - libiconv=1.17=hcfcfb64_2
  - liblapack=3.9.0=21_win64_mkl
  - liblapacke=3.9.0=21_win64_mkl
  - libsodium=1.0.18=h8d14728_1
  - libsqlite=3.44.2=hcfcfb64_0
  - libssh2=1.11.0=h7dfc565_0
  - libxml2=2.12.4=hc3477c8_1
  - libzlib=1.2.13=hcfcfb64_5
  - markupsafe=2.1.4=py310h8d17308_0
  - matplotlib-inline=0.1.6=pyhd8ed1ab_0
  - mistune=3.0.2=pyhd8ed1ab_0
  - mkl=2024.0.0=h66d3029_49657
  - nbclient=0.8.0=pyhd8ed1ab_0
  - nbconvert-core=7.14.2=pyhd8ed1ab_0
  - nbformat=5.9.2=pyhd8ed1ab_0
  - nest-asyncio=1.6.0=pyhd8ed1ab_0
  - notebook-shim=0.2.3=pyhd8ed1ab_0
  - openpyxl=3.1.2=py310h8d17308_1
  - openssl=3.2.0=hcfcfb64_1
  - overrides=7.6.0=pyhd8ed1ab_0
  - packaging=23.2=pyhd8ed1ab_0
  - pandocfilters=1.5.0=pyhd8ed1ab_0
  - parso=0.8.3=pyhd8ed1ab_0
  - pickleshare=0.7.5=py_1003
  - pip=23.3.2=pyhd8ed1ab_0
  - pkgutil-resolve-name=1.3.10=pyhd8ed1ab_1
  - platformdirs=4.1.0=pyhd8ed1ab_0
  - prometheus_client=0.19.0=pyhd8ed1ab_0
  - prompt-toolkit=3.0.42=pyha770c72_0
  - psutil=5.9.8=py310h8d17308_0
  - pthreads-win32=2.9.1=hfa6e2cd_3
  - pure_eval=0.2.2=pyhd8ed1ab_0
  - pycparser=2.21=pyhd8ed1ab_0
  - pygments=2.17.2=pyhd8ed1ab_0
  - pysocks=1.7.1=pyh0701188_6
  - python=3.10.13=h4de0772_1_cpython
  - python-dateutil=2.8.2=pyhd8ed1ab_0
  - python-fastjsonschema=2.19.1=pyhd8ed1ab_0
  - python-json-logger=2.0.7=pyhd8ed1ab_0
  - python_abi=3.10=4_cp310
  - pytz=2023.3.post1=pyhd8ed1ab_0
  - pywin32=306=py310h00ffb61_2
  - pywinpty=2.0.12=py310h00ffb61_0
  - pyyaml=6.0.1=py310h8d17308_1
  - pyzmq=25.1.2=py310h2849c00_0
  - referencing=0.32.1=pyhd8ed1ab_0
  - requests=2.31.0=pyhd8ed1ab_0
  - rfc3339-validator=0.1.4=pyhd8ed1ab_0
  - rfc3986-validator=0.1.1=pyh9f0ad1d_0
  - rpds-py=0.17.1=py310h87d50f1_0
  - send2trash=1.8.2=pyh08f2357_0
  - setuptools=69.0.3=pyhd8ed1ab_0
  - six=1.16.0=pyh6c4a22f_0
  - sniffio=1.3.0=pyhd8ed1ab_0
  - soupsieve=2.5=pyhd8ed1ab_1
  - stack_data=0.6.2=pyhd8ed1ab_0
  - suitesparse=5.4.0=h5d0cbe0_1
  - tbb=2021.11.0=h91493d7_0
  - tbb-devel=2021.11.0=h91493d7_0
  - terminado=0.18.0=pyh5737063_0
  - tinycss2=1.2.1=pyhd8ed1ab_0
  - tk=8.6.13=h5226925_1
  - tomli=2.0.1=pyhd8ed1ab_0
  - tornado=6.3.3=py310h8d17308_1
  - traitlets=5.14.1=pyhd8ed1ab_0
  - types-python-dateutil=2.8.19.20240106=pyhd8ed1ab_0
  - typing-extensions=4.9.0=hd8ed1ab_0
  - typing_extensions=4.9.0=pyha770c72_0
  - typing_utils=0.1.0=pyhd8ed1ab_0
  - ucrt=10.0.22621.0=h57928b3_0
  - uri-template=1.3.0=pyhd8ed1ab_0
  - urllib3=2.1.0=pyhd8ed1ab_0
  - vc=14.3=hcf57466_18
  - vc14_runtime=14.38.33130=h82b7239_18
  - vs2015_runtime=14.38.33130=hcb4865c_18
  - wcwidth=0.2.13=pyhd8ed1ab_0
  - webcolors=1.13=pyhd8ed1ab_0
  - webencodings=0.5.1=pyhd8ed1ab_2
  - websocket-client=1.7.0=pyhd8ed1ab_0
  - wheel=0.42.0=pyhd8ed1ab_0
  - win_inet_pton=1.1.0=pyhd8ed1ab_6
  - winpty=0.4.3=4
  - xz=5.2.6=h8d14728_0
  - yaml=0.2.5=h8ffe710_2
  - zeromq=4.3.5=h63175ca_0
  - zipp=3.17.0=pyhd8ed1ab_0
  - pip:
      - about-time==4.2.1
      - addict==2.3.0
      - alive-progress==3.1.5
      - annotated-types==0.6.0
      - appdirs==1.4.4
      - arviz==0.17.0
      - autograd==1.6.2
      - betterproto==2.0.0b6
      - cadet-process==0.8.0
      - cadet-python==0.14.1
      - cma==3.2.2
      - cobra==0.29.0
      - contourpy==1.2.0
      - corner==2.2.2
      - cycler==0.12.1
      - depinfo==2.2.0
      - deprecated==1.2.14
      - dill==0.3.7
      - diskcache==5.6.3
      - filelock==3.13.1
      - fonttools==4.47.2
      - future==0.18.3
      - grapheme==0.6.0
      - grpclib==0.4.7
      - h11==0.14.0
      - h2==4.1.0
      - h5netcdf==1.3.0
      - hagelkorn==1.2.3
      - hopsy==1.4.1
      - hpack==4.0.0
      - httpcore==1.0.2
      - httpx==0.26.0
      - hyperframe==6.0.1
      - ipywidgets==8.1.1
      - joblib==1.3.2
      - jupyter==1.0.0
      - jupyter-console==6.6.3
      - jupyterlab-widgets==3.0.9
      - kiwisolver==1.4.5
      - llvmlite==0.41.1
      - markdown-it-py==3.0.0
      - matplotlib==3.8.2
      - mcbackend==0.5.2
      - mdurl==0.1.2
      - mpmath==1.3.0
      - multidict==6.0.4
      - multiprocess==0.70.15
      - notebook==7.0.7
      - numba==0.58.1
      - numpy==1.26.3
      - optlang==1.8.1
      - pandas==2.2.0
      - pathos==0.3.1
      - pillow==10.2.0
      - polyround==0.2.11
      - pox==0.3.3
      - ppft==1.7.6.7
      - pydantic==2.5.3
      - pydantic-core==2.14.6
      - pymoo==0.6.1.1
      - pyparsing==3.1.1
      - python-libsbml==5.20.2
      - qtconsole==5.5.1
      - qtpy==2.4.1
      - rich==13.7.0
      - ruamel-yaml==0.18.5
      - ruamel-yaml-clib==0.2.8
      - scikit-learn==1.4.0
      - scipy==1.12.0
      - swiglpk==5.0.10
      - sympy==1.12
      - threadpoolctl==3.2.0
      - tqdm==4.66.1
      - tzdata==2023.4
      - widgetsnbextension==4.0.9
      - wrapt==1.16.0
      - xarray==2024.1.0
      - xarray-einstats==0.7.0
prefix: C:\ProgramData\anaconda3\envs\cadet

(cadet) C:\Users\rastogsh\OneDrive - Boehringer Ingelheim\Python Files>pip freeze
about-time==4.2.1
addict==2.3.0
alive-progress==3.1.5
annotated-types==0.6.0
anyio @ file:///home/conda/feedstock_root/build_artifacts/anyio_1702909220329/work
appdirs==1.4.4
argon2-cffi @ file:///home/conda/feedstock_root/build_artifacts/argon2-cffi_1692818318753/work
argon2-cffi-bindings @ file:///D:/bld/argon2-cffi-bindings_1695386740787/work
arrow @ file:///home/conda/feedstock_root/build_artifacts/arrow_1696128962909/work
arviz==0.17.0
asttokens @ file:///home/conda/feedstock_root/build_artifacts/asttokens_1698341106958/work
async-lru @ file:///home/conda/feedstock_root/build_artifacts/async-lru_1690563019058/work
attrs @ file:///home/conda/feedstock_root/build_artifacts/attrs_1704011227531/work
autograd==1.6.2
Babel @ file:///home/conda/feedstock_root/build_artifacts/babel_1702422572539/work
beautifulsoup4 @ file:///home/conda/feedstock_root/build_artifacts/beautifulsoup4_1705564648255/work
betterproto==2.0.0b6
bleach @ file:///home/conda/feedstock_root/build_artifacts/bleach_1696630167146/work
Brotli @ file:///D:/bld/brotli-split_1695989908365/work
cached-property @ file:///home/conda/feedstock_root/build_artifacts/cached_property_1615209429212/work
CADET-Process==0.8.0
CADET-Python==0.14.1
certifi @ file:///home/conda/feedstock_root/build_artifacts/certifi_1700303426725/work/certifi
cffi @ file:///D:/bld/cffi_1696001730392/work
charset-normalizer @ file:///home/conda/feedstock_root/build_artifacts/charset-normalizer_1698833585322/work
cma==3.2.2
cobra==0.29.0
colorama @ file:///home/conda/feedstock_root/build_artifacts/colorama_1666700638685/work
comm @ file:///home/conda/feedstock_root/build_artifacts/comm_1704278392174/work
contourpy==1.2.0
corner==2.2.2
cycler==0.12.1
debugpy @ file:///D:/bld/debugpy_1695534524310/work
decorator @ file:///home/conda/feedstock_root/build_artifacts/decorator_1641555617451/work
defusedxml @ file:///home/conda/feedstock_root/build_artifacts/defusedxml_1615232257335/work
depinfo==2.2.0
Deprecated==1.2.14
dill==0.3.7
diskcache==5.6.3
entrypoints @ file:///home/conda/feedstock_root/build_artifacts/entrypoints_1643888246732/work
et-xmlfile @ file:///home/conda/feedstock_root/build_artifacts/et_xmlfile_1674664118162/work
exceptiongroup @ file:///home/conda/feedstock_root/build_artifacts/exceptiongroup_1704921103267/work
executing @ file:///home/conda/feedstock_root/build_artifacts/executing_1698579936712/work
fastjsonschema @ file:///home/conda/feedstock_root/build_artifacts/python-fastjsonschema_1703780968325/work/dist
filelock==3.13.1
fonttools==4.47.2
fqdn @ file:///home/conda/feedstock_root/build_artifacts/fqdn_1638810296540/work/dist
future==0.18.3
grapheme==0.6.0
grpclib==0.4.7
h11==0.14.0
h2==4.1.0
h5netcdf==1.3.0
hagelkorn==1.2.3
hopsy==1.4.1
hpack==4.0.0
httpcore==1.0.2
httpx==0.26.0
hyperframe==6.0.1
idna @ file:///home/conda/feedstock_root/build_artifacts/idna_1701026962277/work
importlib-metadata @ file:///home/conda/feedstock_root/build_artifacts/importlib-metadata_1703269254275/work
importlib-resources @ file:///home/conda/feedstock_root/build_artifacts/importlib_resources_1699364556997/work
ipykernel @ file:///D:/bld/ipykernel_1705418162861/work
ipython @ file:///D:/bld/ipython_1704719016910/work
ipywidgets==8.1.1
isoduration @ file:///home/conda/feedstock_root/build_artifacts/isoduration_1638811571363/work/dist
jedi @ file:///home/conda/feedstock_root/build_artifacts/jedi_1696326070614/work
Jinja2 @ file:///home/conda/feedstock_root/build_artifacts/jinja2_1704966972576/work
joblib==1.3.2
json5 @ file:///home/conda/feedstock_root/build_artifacts/json5_1688248289187/work
jsonpointer @ file:///D:/bld/jsonpointer_1695397563781/work
jsonschema @ file:///home/conda/feedstock_root/build_artifacts/jsonschema-meta_1705707496704/work
jsonschema-specifications @ file:///tmp/tmpkv1z7p57/src
jupyter==1.0.0
jupyter-console==6.6.3
jupyter-events @ file:///home/conda/feedstock_root/build_artifacts/jupyter_events_1699285872613/work
jupyter-lsp @ file:///home/conda/feedstock_root/build_artifacts/jupyter-lsp-meta_1705532074645/work/jupyter-lsp
jupyter_client @ file:///home/conda/feedstock_root/build_artifacts/jupyter_client_1699283905679/work
jupyter_core @ file:///D:/bld/jupyter_core_1704727156030/work
jupyter_server @ file:///home/conda/feedstock_root/build_artifacts/jupyter_server_1705418153950/work
jupyter_server_terminals @ file:///home/conda/feedstock_root/build_artifacts/jupyter_server_terminals_1706006699561/work
jupyterlab @ file:///home/conda/feedstock_root/build_artifacts/jupyterlab_1705683789895/work
jupyterlab-widgets==3.0.9
jupyterlab_pygments @ file:///home/conda/feedstock_root/build_artifacts/jupyterlab_pygments_1700744013163/work
jupyterlab_server @ file:///home/conda/feedstock_root/build_artifacts/jupyterlab_server-split_1700310846957/work
kiwisolver==1.4.5
llvmlite==0.41.1
markdown-it-py==3.0.0
MarkupSafe @ file:///D:/bld/markupsafe_1705779093501/work
matplotlib==3.8.2
matplotlib-inline @ file:///home/conda/feedstock_root/build_artifacts/matplotlib-inline_1660814786464/work
mcbackend==0.5.2
mdurl==0.1.2
mistune @ file:///home/conda/feedstock_root/build_artifacts/mistune_1698947099619/work
mpmath==1.3.0
multidict==6.0.4
multiprocess==0.70.15
nbclient @ file:///home/conda/feedstock_root/build_artifacts/nbclient_1684790896106/work
nbconvert @ file:///home/conda/feedstock_root/build_artifacts/nbconvert-meta_1705418470095/work
nbformat @ file:///home/conda/feedstock_root/build_artifacts/nbformat_1690814868471/work
nest_asyncio @ file:///home/conda/feedstock_root/build_artifacts/nest-asyncio_1705850609492/work
notebook==7.0.7
notebook_shim @ file:///home/conda/feedstock_root/build_artifacts/notebook-shim_1682360583588/work
numba==0.58.1
numpy==1.26.3
openpyxl @ file:///D:/bld/openpyxl_1695464820276/work
optlang==1.8.1
overrides @ file:///home/conda/feedstock_root/build_artifacts/overrides_1705794179781/work
packaging @ file:///home/conda/feedstock_root/build_artifacts/packaging_1696202382185/work
pandas==2.2.0
pandocfilters @ file:///home/conda/feedstock_root/build_artifacts/pandocfilters_1631603243851/work
parso @ file:///home/conda/feedstock_root/build_artifacts/parso_1638334955874/work
pathos==0.3.1
pickleshare @ file:///home/conda/feedstock_root/build_artifacts/pickleshare_1602536217715/work
pillow==10.2.0
pkgutil_resolve_name @ file:///home/conda/feedstock_root/build_artifacts/pkgutil-resolve-name_1694617248815/work
platformdirs @ file:///home/conda/feedstock_root/build_artifacts/platformdirs_1701708255999/work
PolyRound==0.2.11
pox==0.3.3
ppft==1.7.6.7
prometheus-client @ file:///home/conda/feedstock_root/build_artifacts/prometheus_client_1700579315247/work
prompt-toolkit @ file:///home/conda/feedstock_root/build_artifacts/prompt-toolkit_1702399386289/work
psutil @ file:///D:/bld/psutil_1705722518504/work
pure-eval @ file:///home/conda/feedstock_root/build_artifacts/pure_eval_1642875951954/work
pycparser @ file:///home/conda/feedstock_root/build_artifacts/pycparser_1636257122734/work
pydantic==2.5.3
pydantic_core==2.14.6
Pygments @ file:///home/conda/feedstock_root/build_artifacts/pygments_1700607939962/work
pymoo==0.6.1.1
pyparsing==3.1.1
PySocks @ file:///D:/bld/pysocks_1661604991356/work
python-dateutil @ file:///home/conda/feedstock_root/build_artifacts/python-dateutil_1626286286081/work
python-json-logger @ file:///home/conda/feedstock_root/build_artifacts/python-json-logger_1677079630776/work
python-libsbml==5.20.2
pytz @ file:///home/conda/feedstock_root/build_artifacts/pytz_1693930252784/work
pywin32==306
pywinpty @ file:///D:/bld/pywinpty_1696655861762/work/target/wheels/pywinpty-2.0.12-cp310-none-win_amd64.whl#sha256=2a321a202a7910719b3e48199e899c49a7a5187720a8d4838e0701ebc96bedc0
PyYAML @ file:///D:/bld/pyyaml_1695373629531/work
pyzmq @ file:///D:/bld/pyzmq_1701783318166/work
qtconsole==5.5.1
QtPy==2.4.1
referencing @ file:///home/conda/feedstock_root/build_artifacts/referencing_1704489226496/work
requests @ file:///home/conda/feedstock_root/build_artifacts/requests_1684774241324/work
rfc3339-validator @ file:///home/conda/feedstock_root/build_artifacts/rfc3339-validator_1638811747357/work
rfc3986-validator @ file:///home/conda/feedstock_root/build_artifacts/rfc3986-validator_1598024191506/work
rich==13.7.0
rpds-py @ file:///D:/bld/rpds-py_1705159956198/work
ruamel.yaml==0.18.5
ruamel.yaml.clib==0.2.8
scikit-learn==1.4.0
scipy==1.12.0
Send2Trash @ file:///D:/bld/send2trash_1682601429724/work
six @ file:///home/conda/feedstock_root/build_artifacts/six_1620240208055/work
sniffio @ file:///home/conda/feedstock_root/build_artifacts/sniffio_1662051266223/work
soupsieve @ file:///home/conda/feedstock_root/build_artifacts/soupsieve_1693929250441/work
stack-data @ file:///home/conda/feedstock_root/build_artifacts/stack_data_1669632077133/work
swiglpk==5.0.10
sympy==1.12
terminado @ file:///D:/bld/terminado_1699810237897/work
threadpoolctl==3.2.0
tinycss2 @ file:///home/conda/feedstock_root/build_artifacts/tinycss2_1666100256010/work
tomli @ file:///home/conda/feedstock_root/build_artifacts/tomli_1644342247877/work
tornado @ file:///D:/bld/tornado_1695373669358/work
tqdm==4.66.1
traitlets @ file:///home/conda/feedstock_root/build_artifacts/traitlets_1704212992681/work
types-python-dateutil @ file:///home/conda/feedstock_root/build_artifacts/types-python-dateutil_1704512562698/work
typing-utils @ file:///home/conda/feedstock_root/build_artifacts/typing_utils_1622899189314/work
typing_extensions @ file:///home/conda/feedstock_root/build_artifacts/typing_extensions_1702176139754/work
tzdata==2023.4
uri-template @ file:///home/conda/feedstock_root/build_artifacts/uri-template_1688655812972/work/dist
urllib3 @ file:///home/conda/feedstock_root/build_artifacts/urllib3_1699933488691/work
wcwidth @ file:///home/conda/feedstock_root/build_artifacts/wcwidth_1704731205417/work
webcolors @ file:///home/conda/feedstock_root/build_artifacts/webcolors_1679900785843/work
webencodings @ file:///home/conda/feedstock_root/build_artifacts/webencodings_1694681268211/work
websocket-client @ file:///home/conda/feedstock_root/build_artifacts/websocket-client_1701630677416/work
widgetsnbextension==4.0.9
win-inet-pton @ file:///D:/bld/win_inet_pton_1667051142467/work
wrapt==1.16.0
xarray==2024.1.0
xarray-einstats==0.7.0
zipp @ file:///home/conda/feedstock_root/build_artifacts/zipp_1695255097490/work

Hey,

with the environment specified above I cannot reproduce the error.

But I did notice, that h5py is missing in your environment.
image
So apparently there was some problem with the installation of h5py.

I would suggest you join us at the next office hours, next week wednesday.

I have installed h5py version 3.6.0 but am still getting the mismatch error. I’ll join office hours next week and get some hands-on help!

Thank you for your time.