pip 下载包失败,使用国内镜像

环境

  1. python版本:3.6
  2. win7

问题描述

下载pyautogui时失败了,有以下报错

Retrying (Retry(total=2, connect=None, read=None, redirect=None)) after connection broken by ‘ReadTimeoutError(“HTTPSConnectionPool(host=’pypi.python.org’, port=443): Read timed out. (read timeout=15)”,)’: /simple/scipy/

原因是国内线路不通,可以翻出去试试,或者使用国内镜像。


$ pip  install --index https://pypi.mirrors.ustc.edu.cn/simple/ pyautogui

注:–index后面是国内镜像地址,也可以换成别的镜像,比如http://mirrors.sohu.com/python/

支持原创

码文不易,希望支持,谢谢->支持原创

pip 下载包失败,使用国内镜像_第1张图片

再次感谢,大家对本人的支持。

你可能感兴趣的:(python,杂货)