is there a way to specify runtime pip deps in flyt...
# contribute
b
is there a way to specify runtime pip deps in flyte task. Ask the task to download from pip before the func is run @Kevin Su We can’t use imageSpec atm
k
you want download package at runtime?
b
yes
b
Seems complicated 😅
k
Copy code
@task(runtime_env=RuntimeEnv(pip_packages=["tensorflow", "pandas==1.5.1"]))
b
cherry-pick this commit and it will just work?
k
I think so, I have tested it before
b
thanks
k
why can’t use Imagespec? you don’t have perm to push image?
b
haven’t gotten time to resolve the perm issue. We can’t push/pull atm
will ultimately find a way to integrate with imagespec. Looks very concise
k
I will add a doc for private registry next week If I have time, we also want to add an internal private registry.
b
how do you resolve the issue?
k
I don’t exactly know the issue, so I will test imagespec with ECR next week first. many people use ecr
k
@Byron Hsu you dont need to push imagespec, just use your ci to push it
151 Views