coiled / data-science-at-scale

A Pythonic introduction to methods for scaling your data science and machine learning work to larger datasets and larger models, using the tools and APIs you know and love from the PyData stack (such as numpy, pandas, and scikit-learn).
MIT License
112 stars 38 forks source link

Dask dashboards missing locally #9

Closed hugobowne closed 4 years ago

hugobowne commented 4 years ago

I've followed instructions from here to try to get this repo up and running locally.

This is what I did from the readme:

conda env create -f binder/environment.yml 
conda activate data-science-at-scale
jupyter labextension install @jupyter-widgets/jupyterlab-manager
jupyter labextension install @bokeh/jupyter_bokeh

then jupyter lab

It all went smoothly but there are no dashboards when I open the notebooks (see screenshot).

Any ideas, @jrbourbeau?

Screen Shot 2020-09-07 at 10 27 26 am
jrbourbeau commented 4 years ago

There's an additional step to install the Dask JupyterLab extension:

jupyter labextension install dask-labextension
hugobowne commented 4 years ago

thanks! Looks like I'm a step closer:

Screen Shot 2020-09-07 at 11 19 00 am

Do I need to enter a Dask dashboard url or something similar?

jrbourbeau commented 4 years ago

You can enter the cluster dashboard link (available at client.dashboard_link and then click the magnifying glass icon to the right) or just click the magnifying glass icon and it should autopopulate the address

hugobowne commented 4 years ago

Success, many thanks