I have an Orchestrator Enviroment that doesn't have access to the internet. I am trying to configure a Python 3.10 Enviroment which downloads various packages from our internal repository and while it does work, it appears to try "https://pypi.org/simple" first which leads to numerous proxy errors. This occurs for each package within the repo meaning it can be a significantly slower process than it needs to be...
Do you have any suggestions of what i can do so it only checks the internal repo? I cant seem to find a way to change the "Default Public Repository" to be an internal one
2023-09-28 10:30:51.171 +01:00INFO[Start downloading dependencies]
2023-09-28 10:30:51.172 +01:00INFO
2023-09-28 10:30:51.218 +01:00INFODownloading requests 2.31.0 ...
2023-09-28 10:31:06.674 +01:00ERRORWARNING: Retrying (Retry(total=4, connect=None, read=None, redirect=None, status=None)) after connection broken by 'ProxyError('Cannot connect to proxy.', TimeoutError('timed out'))': /simple/requests/
2023-09-28 10:31:22.192 +01:00ERRORWARNING: Retrying (Retry(total=3, connect=None, read=None, redirect=None, status=None)) after connection broken by 'ProxyError('Cannot connect to proxy.', TimeoutError('timed out'))': /simple/requests/
2023-09-28 10:31:38.209 +01:00ERRORWARNING: Retrying (Retry(total=2, connect=None, read=None, redirect=None, status=None)) after connection broken by 'ProxyError('Cannot connect to proxy.', TimeoutError('timed out'))': /simple/requests/
2023-09-28 10:31:55.226 +01:00ERRORWARNING: Retrying (Retry(total=1, connect=None, read=None, redirect=None, status=None)) after connection broken by 'ProxyError('Cannot connect to proxy.', TimeoutError('timed out'))': /simple/requests/
2023-09-28 10:32:14.269 +01:00ERRORWARNING: Retrying (Retry(total=0, connect=None, read=None, redirect=None, status=None)) after connection broken by 'ProxyError('Cannot connect to proxy.', TimeoutError('timed out'))': /simple/requests/
2023-09-28 10:32:29.590 +01:00INFOCollecting requests==2.31.0
2023-09-28 10:32:29.627 +01:00INFO Downloading https://myrepo/artifactory/api/pypi/pypi/packages/packages/70/8e/0e2d847013cb52cd35b38c009bb167a1a26b2ce6cd6965bf26b47bc0bf44/requests-2.31.0-py3-none-any.whl (62 kB)
2023-09-28 10:32:29.645 +01:00INFO ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 62.6/62.6 kB 4.5 MB/s eta 0:00:00
Adding a proxy to the internet is not an option