We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 2df31b7 commit f15082cCopy full SHA for f15082c
xarray/backends/plugins.py
@@ -204,6 +204,9 @@ def get_backend(engine: str | type[BackendEntrypoint]) -> BackendEntrypoint:
204
if engine not in engines:
205
raise ValueError(
206
f"unrecognized engine {engine} must be one of: {list(engines)}"
207
+ "To install additional dependencies, see:\n"
208
+ "https://docs.xarray.dev/en/stable/user-guide/io.html \n"
209
+ "https://docs.xarray.dev/en/stable/getting-started-guide/installing.html"
210
)
211
backend = engines[engine]
212
elif isinstance(engine, type) and issubclass(engine, BackendEntrypoint):
0 commit comments