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.
ORPA-pyOpenRPA/Resources/WPy64-3720/python-3.7.2.amd64/Lib/site-packages/dask/distributed.py

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)