red-coat-36321
08/15/2024, 2:42 PMPIP_EXTRA_INDEX_URL=<https://my_company/repository/pypi-my_company/simple> python hello_flow.py --environment=pypi run
Do you know how I can specify the same url with:
with Runner("hello_flow.py".run() as running:
print(f"{running.run} finished")
Thanks!dry-beach-38304
08/15/2024, 3:45 PMwith Runner("hello_flow.py", env={"PIP_EXTRA_INDEX_URL": "..."}, environment="pypi").run()
Note that the env part is optional as well if the outer process already has the proper environment variables set up.