Is this the correct way to specify the use of multiple additional packages? ```flow.run_config = ECS...
j
Is this the correct way to specify the use of multiple additional packages?
Copy code
flow.run_config = ECSRun(
env={"EXTRA_PIP_PACKAGES": "requests" "numpy"})
a
close but no cigar 🙂 it should be one string with packages separated via space
Copy code
flow.run_config = ECSRun(
env={"EXTRA_PIP_PACKAGES": "requests numpy pandas"})
j
thank you!