I am trying to use dask dataframes into a packaged executable using pyinstaller.
I have just
import dask
in my executable and I package it with
pyinstaller scripts.py
When I run it I get that /some/path/dask.yaml
is not found.
Does somebody know if there are hidden imports that I should add or how else to solve this issue?