I am using Dask in a cluster environment through Dask-gateway. I created the computation graph in a Jupyter Notebook. Within my delayed function, it calls multiple functions defined in several separate .py files. Currently, I am running into the error on the worker saying that these modules cannot be found. I guess this is because the workers have no access to those .py files. I am wondering how I can 'send' these .py files to workers?
Thanks.