Is there a way to `prefect execute flow-run` an al...
# ask-community
j
Is there a way to
prefect execute flow-run
an already-completed run? My use case is that I’m building a custom container to execute flows stored in script storage on my kubernetes agent, but when the flow runs it can’t find python dependencies (
import pandas
fails). I’d like to repro it locally, but when I try and run the flow I see
Flow run has already finished.
. Other advice for debugging would be welcome; I’ve run a shell in the container and I do see my dependencies FWIW.
k
Hi @Jason Prado! You can use the client and
create_flow_run
to use Python to start the flow. Could this be pandas not being installed on the Dask workers?
j
ah, thanks! I’ll try
create_flow_run
.