You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
File "stormhub\stormhub\met\aorc\aorc.py", line 8, in <module> import s3fs ModuleNotFoundError: No module named 's3fs'
After pip installing s3fs (version 2024.12.0), I get: File "stormhub\venv\Lib\site-packages\xarray\backends\plugins.py", line 202, in get_backend raise ValueError( ValueError: unrecognized engine 'zarr' must be one of your download engines: ['rasterio', 'store'].
After pip install of zarr, I get: File "stormhub\venv\Lib\site-packages\zarr\storage\_common.py", line 316, in make_store_path raise TypeError(msg) TypeError: Unsupported type for store_like: 'FSMap'
Which is resolved by downgrading to version 2.18.4 (link to more info)
After downgrade of zarr, I get: File "stormhub\venv\Lib\site-packages\xarray\namedarray\parallelcompat.py", line 110, in guess_chunkmanager raise ValueError( ValueError: unrecognized chunk manager dask - must be one of: []
Which is resolved by pip installing dask (version 2025.1.0)
At this point the workflow runs without errors.
Environment
Windows 11
Python 3.11
The text was updated successfully, but these errors were encountered:
Steps to reproduce
venv
, and runpip install -e .
.\workflows\new.py
to run on subset of provided sample data:python .\workflows\new.py
Expected behavior
The new catalog workflow runs without errors.
Current behavior
File "stormhub\stormhub\met\aorc\aorc.py", line 8, in <module> import s3fs ModuleNotFoundError: No module named 's3fs'
After pip installing s3fs (version 2024.12.0), I get:
File "stormhub\venv\Lib\site-packages\xarray\backends\plugins.py", line 202, in get_backend raise ValueError( ValueError: unrecognized engine 'zarr' must be one of your download engines: ['rasterio', 'store'].
After pip install of zarr, I get:
File "stormhub\venv\Lib\site-packages\zarr\storage\_common.py", line 316, in make_store_path raise TypeError(msg) TypeError: Unsupported type for store_like: 'FSMap'
Which is resolved by downgrading to version 2.18.4 (link to more info)
After downgrade of zarr, I get:
File "stormhub\venv\Lib\site-packages\xarray\namedarray\parallelcompat.py", line 110, in guess_chunkmanager raise ValueError( ValueError: unrecognized chunk manager dask - must be one of: []
Which is resolved by pip installing dask (version 2025.1.0)
At this point the workflow runs without errors.
Environment
The text was updated successfully, but these errors were encountered: