Pip SSL Error on Windows

前端 未结 6 879
萌比男神i
萌比男神i 2020-12-15 14:02

I use Python 3.x on Windows 7 64 bit in an environment without full control of inbound/outbound traffic processing. Up till this week I\'ve been able to use the --trus

6条回答
  •  [愿得一人]
    2020-12-15 14:28

    What ended up working for me is to add all the domains that are part of the new pypi routing.

    pip install --trusted-host pypi.org --trusted-host pypi.python.org --trusted-host files.pythonhosted.org 
    

    Which can also be setup in a pip.ini file.

提交回复
热议问题