Is this the right way to specify a specific url fo...
# ask-community
j
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
How would you pip install it?
Copy code
pip install "mypackage--index-url=<https://my_url>"
Like that?
j
Copy code
pip install -i <https://myurl/mypackage>
k
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
Cool I'll try that out, thanks