Spaces:
Running
on
Zero
Running
on
Zero
File size: 679 Bytes
d1ed09d |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 |
# flake8: noqa
_import_error_message = (
"dask.distributed is not installed.\n\n"
"Please either conda or pip install distributed:\n\n"
" conda install dask distributed # either conda install\n"
' python -m pip install "dask[distributed]" --upgrade # or pip install'
)
try:
from distributed import *
except ImportError as e:
if e.msg == "No module named 'distributed'":
raise ImportError(_import_error_message) from e
else:
raise
def __getattr__(value):
try:
import distributed
except ImportError as e:
raise ImportError(_import_error_message) from e
return getattr(distributed, value)
|