Brian S
12/08/2021, 7:30 PMFailed to load and execute Flow's environment: ModuleNotFoundError("No module named 'xxx'")
when submitting the flow to and ECS(Fargate). The module in question is a custom Python module that I include in the agent Docker image and it's installed via pip install. I feel like I'm missing something here but from what I've read, that should work. Does anyone have a tip on how I might get the flow execution to be aware of this custom module? Is the Agent the proper place to install the module?Kevin Kho
Kevin Kho
Brian S
12/08/2021, 7:33 PMBrian S
12/08/2021, 7:34 PMKevin Kho
Brian S
12/08/2021, 7:38 PMTilak Maddy
12/08/2021, 8:38 PMENV PYTHONPATH "${PYTHONPATH}:/app"
@Kevin Kho is really trying to hide the magic line that fixed my deployment issue . (I had the same error)Kevin Kho
Brian S
12/10/2021, 8:20 PM