I'm following the Prefect tutorial available at: https://docs.prefect.io/core/tutorial/01-etl-before-prefect.html. The code can be downloaded from the git: https://github.com/PrefectHQ/prefect/tree/master/examples/tutorial
The tutorials have a dependency to aircraftlib which is a directory under tutorials. I can execute the Flows through the terminal with:
python 02_etl_...
and it executes perfectly!
I've created a project, and added the Flow to that project. Through the Prefect Server UI I can run the Flow, but it fails with the error message:
State Message: Failed to load and execute Flow's environment: ModuleNotFoundError("No module named 'aircraftlib'")
How should I handle the dependency when executing the Flows through the Prefect Server UI?