Hi all, I have an internal package that I would li...
# ask-community
d
Hi all, I have an internal package that I would like to have installed alongside my other packages when the infrastructure is set up (I am using the ECS Task from prefect-aws). Typically I just set the environment's
EXTRA_PIP_PACKAGES="package-a package-b"
. My current strategy is submodule the internal dependency and install as editable, but that depends if this variable just being passed to pip as the arguments like
pip install $EXTRA_PIP_PACKAGES
? Then I could set it like
EXTRA_PIP_PACKAGES="package-a package-b -e ./package-c"
. Anybody have insight here?
1
z
tldr; yes
👍 1
We just pass the entire content of that variable to
pip install
d
Great, thank you