Hi All, A Metaflow extension related question, is...
# ask-metaflow
m
Hi All, A Metaflow extension related question, is it possible to vendor our own dependencies into our extensions? I have a couple of dependencies in our extensions and currently they need to be installed into the docker image of the flow. Was wondering if vendoring them is an alternative solution.
d
Yes. It is possible. Just create your own vendor folder and point things from your extension to that using the explicit metaflow_extensions.myext._vendor for example. This public extension does it for example https://github.com/Netflix/metaflow-nflx-extensions
m
Amazing! Thanks a lot. 🙂