Install Dask.Distributed

You can install dask.distributed with conda, with pip, or by installingfrom source.

Conda

To install the latest version of dask.distributed from theconda-forge repository usingconda:

  1. conda install dask distributed -c conda-forge

Pip

Or install distributed with pip:

  1. pip install dask distributed --upgrade

Source

To install distributed from source, clone the repository from github:

  1. git clone https://github.com/dask/distributed.git
  2. cd distributed
  3. python setup.py install

Notes

Note for Macports users: There is a known issue. with Python from macports thatmakes executables be placed in a location that is not available by default. Asimple solution is to extend the PATH environment variable to the locationwhere Python from macports install the binaries. For example, for Python 3.6:

  1. $ export PATH=/opt/local/Library/Frameworks/Python.framework/Versions/3.6/bin:$PATH