see https://www.youtube.com/watch?feature=player_embedded&v=EX_voquHdk0
If not working, see the how-to: https://github.com/dask/dask-labextension
You may have, if not working, to re-run;
jupyter serverextension enable dask_labextension
from dask.distributed import Client
import multiprocessing.popen_spawn_win32
client = Client()
client
import dask.array as da
x = da.random.random(((20000 , 20000)), chunks="16 Mib")
x
y = (x + x.T) - x.mean(axis=0)
y.sum().compute()