From c7e253d5a0d3bd9038a01fe1eeb81ec42b1e8459 Mon Sep 17 00:00:00 2001 From: jenniferbishop <95778407+jenniferbishop@users.noreply.github.com> Date: Thu, 1 May 2025 19:30:20 -0400 Subject: [PATCH 1/2] Update using_dask.md to include specific packages Included specific packages that are needed. This change is needed because nebari-dask does not work right now. --- docs/docs/tutorials/using_dask.md | 9 +++++++++ 1 file changed, 9 insertions(+) diff --git a/docs/docs/tutorials/using_dask.md b/docs/docs/tutorials/using_dask.md index f1ccc9e6b..f9462c354 100644 --- a/docs/docs/tutorials/using_dask.md +++ b/docs/docs/tutorials/using_dask.md @@ -46,6 +46,15 @@ On a default Nebari deployment, you can select the `nebari-git-nebari-git-dask` :::warning Be sure to select an environment which includes `Dask`, and note that the versions of `dask`, `distributed`, and `dask-gateway` must be the same. We recommend the [`nebari-dask` metapackage](https://anaconda.org/conda-forge/nebari-dask). We publish this metapackage alongside Nebari to easily provide you with the correct Dask packages and versions, just be sure that the `nebari-dask` version matches your Nebari deployment version. + +If the nebari-dask environment does not include all the packages needed, here is a list to create a new environment: +- ipykernel +- python >=3.11.5 +- bokeh +- pip +- graphviz +- nebari-dask + ::: Nebari has set of pre-defined options for configuring the Dask profiles that we have access to. From f6607a5878c1c2dab44ed0b12edb249be76592e8 Mon Sep 17 00:00:00 2001 From: Pavithra Eswaramoorthy Date: Thu, 12 Jun 2025 13:22:38 +0200 Subject: [PATCH 2/2] Apply suggestions from code review --- docs/docs/tutorials/using_dask.md | 12 +++++------- 1 file changed, 5 insertions(+), 7 deletions(-) diff --git a/docs/docs/tutorials/using_dask.md b/docs/docs/tutorials/using_dask.md index f9462c354..29db5190c 100644 --- a/docs/docs/tutorials/using_dask.md +++ b/docs/docs/tutorials/using_dask.md @@ -47,13 +47,11 @@ On a default Nebari deployment, you can select the `nebari-git-nebari-git-dask` Be sure to select an environment which includes `Dask`, and note that the versions of `dask`, `distributed`, and `dask-gateway` must be the same. We recommend the [`nebari-dask` metapackage](https://anaconda.org/conda-forge/nebari-dask). We publish this metapackage alongside Nebari to easily provide you with the correct Dask packages and versions, just be sure that the `nebari-dask` version matches your Nebari deployment version. -If the nebari-dask environment does not include all the packages needed, here is a list to create a new environment: -- ipykernel -- python >=3.11.5 -- bokeh -- pip -- graphviz -- nebari-dask +If the nebari-dask environment does not include all the packages needed, here is a list to [create a new environment](/docs/tutorials/creating-new-environments): +- python >=3.11 +- pip +- nebari-dask +- gcsfs :::