Are there any plans to add `uv` as a dependency ma...
# ask-metaflow
i
Are there any plans to add
uv
as a dependency management tool? I'm imagining something like
python flow_name.py --environment=uv run
1
a
hi! at the moment,
uv
by itself isn't a drop-in replacement for pip to generate reproducible envs - when that support lands, we will swap out pip with
uv
. also, note that we use
pip
only locally to generate the reproducible env once - when you use
@kubernetes
- we use a different code path to rehydrate the env that is at least as fast as
uv
since they use the same underlying libs.
1
i
Thanks Savin