Would it be possible for pip to use Windows Certificate Store instead of the default. The use case is as follows:
There is a man in the middle packet inspection (IT security stuff...) that will resign most of the SSL connections with its own certificate that is not in pip default store. That means that almost all SSL requests, including pip install will throw
[SSL: CERTIFICATE_VERIFY_FAILED] certificate verify failed: unable to get local issuer certificate
This is transparent in the browsers (Edge, Chrome, Firefox, etc.) because they are using the Windows Certificate Store to verify if a certificate is trusted or not.
However, pip uses its own file (do not know which one or where it is located). I try overridden using a custom, cer file and set it into the environment variables, but it didn't works.
Is there any way to change pip to use Windows Certificate Store, or where it is located on how can I add a certificate to it?