Is this the correct way to specify the use of mult...
# ask-community
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!