hi all, where should I insert my custom functions ...
# ask-community
m
hi all, where should I insert my custom functions to be visible by prefect?
a
the code should be available to the agent running the tasks. The simplest way to do so it to set the
PYTHONPATH
environment var:
Copy code
export PYTHONPATH=path/to/folder
where the folder is a folder containing your
Functions
package
m
thanks. solved 🙂
🚀 1