This code repository is part of the introduction to distributed computing with Dask session.
It is recommended to create a specific virtual environment for the repository. To be able to manage dependencies and Python version at the same time in a simple way, it is recommended to use Conda.
Open a terminal at the root of the repository and create a new python environment.
conda create -n dask_introduction python=3.12Then, it is necessary to activate it and/or configure it as the project interpreter in your IDE.
conda activate dask_introductionFinally, you must install the project dependencies in your new environment.
pip install -r requirements.txtJust run Jupyter in you environment and enjoy :)
jupyter-lab