https://prefect.io logo
#prefect-community
Title
# prefect-community
j

Jason Motley

05/17/2022, 8:55 PM
Is this the right way to specify a specific url for a specific internal package? This is a part of the flow.run.config
Copy code
env={"EXTRA_PIP_PACKAGES": "mypackage--index-url=<https://my_url>"})
k

Kevin Kho

05/17/2022, 8:56 PM
How would you pip install it?
Copy code
pip install "mypackage--index-url=<https://my_url>"
Like that?
j

Jason Motley

05/17/2022, 8:57 PM
Copy code
pip install -i <https://myurl/mypackage>
k

Kevin Kho

05/17/2022, 8:59 PM
I am not confident that can be done because that pip install happens here . Maybe you can try typing
Copy code
"EXTRA_PIP_PACKAGES" : "-i <https://myurl/mypackage>"
I’m not sure
j

Jason Motley

05/17/2022, 9:00 PM
Cool I'll try that out, thanks
4 Views