12 lines
450 B
12 lines
450 B
# flake8: noqa
|
|
from __future__ import absolute_import, division, print_function
|
|
|
|
try:
|
|
from distributed import *
|
|
except ImportError:
|
|
msg = ("Dask's distributed scheduler is not installed.\n\n"
|
|
"Please either conda or pip install dask distributed:\n\n"
|
|
" conda install dask distributed # either conda install\n"
|
|
" pip install dask distributed --upgrade # or pip install")
|
|
raise ImportError(msg)
|