You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
12 lines
450 B
12 lines
450 B
6 years ago
|
# 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)
|