ReadTimeoutError
在使用pip install安装包时,出现ReadTimeoutError, ip._vendor.urllib3.exceptions.ReadTimeoutError: HTTPSConnectionPool(host=‘files.pythonhosted.org’, port=443): Read timed out. 切换到国内的镜像源下载:
pip install -i 国内地址 包名
或者
pip install --index 国内地址 包名
例如:
pip install --index https://mirrors.aliyun.com/pypi/simple/ timm
下面几个国内常用的地址(全都亲测有效,2021/7/26测试):
(1)阿里云 https://mirrors.aliyun.com/pypi/simple/
(2)豆瓣 https://pypi.douban.com/simple/
(3)清华大学 https://pypi.tuna.tsinghua.edu.cn/simple/
(4)中国科学技术大学 https://pypi.mirrors.ustc.edu.cn/simple/
如果要同时下载多个包: 多个包名间用空格隔开
pip install -i 国内地址 包名A 包名B 包名C ...
|