The following code:
import intake
wrf_url = 'https://thredds.rda.ucar.edu/thredds/catalog/files/g/d559000/wy2006/200606/catalog.xml'
catalog = intake.open_thredds_merged(wrf_url, path=['wrf3d_d01_2006-06-01_0*'])
will fail with
ModuleNotFoundError: No module named 'pkg_resources'
with setuptools version 80.
Downgrading setuptools to version 79 works around the issue.
The following code:
will fail with
with setuptools version 80.
Downgrading setuptools to version 79 works around the issue.