Devin Flake
12/14/2023, 7:41 PM2.14.9-python3.11-kubernetes
) + Azure storage to pull the deployment but I'm getting the following error during my flow run ModuleNotFoundError: No module named 'azure.storage'
Do I need to install prefect-azure and/or adlfs as EXTRA_PIP_PACKAGES
on the worker to get it to run?Nate
12/14/2023, 7:46 PMDockerfile
that starts FROM prefecthq/prefect:2.14.9-python3.11-kubernetes
and RUN pip install prefect-azure==X.X.X
and use that image as your image
on your work pool
• or set EXTRA_PIP_PACKAGES="prefect-azure"
(this is more convenient in the short term / testing, but is not recommended for prod as you cant guarantee what deps you actually have in your runtime - see this thread)Devin Flake
12/14/2023, 7:47 PM