Updating the pip.conf file to use https

后端 未结 4 1142
傲寒
傲寒 2021-02-06 03:06

I am having trouble configuring my pip.conf file to stipulate that PIP should look for downloads from https://pypi.python.org/simple/ rather than http://pypi.python.org/simple/

4条回答
  •  悲&欢浪女
    2021-02-06 04:13

    You should use index-url = https://pypi.python.org/simple/ rather than find-links in your config. This will replace the default rather than just adding another option (which is what find-links does).

提交回复
热议问题