问题:
今天在遇到了安装pytorch中的torchvision包的时候一直超时失败报错如下
ReadTimeoutError: HTTPSConnectionPool(host='files.pythonhosted.org', port=443): Read timed out.
之前的安装的方式是:
pip install --no-deps torchvision
解决办法:
使用国内的镜像源安装。在原来安装时在命令里加一个参数 -i,然后在i后面加国内镜像地址。
选择国内的镜像源列表如下:
清华源: https://pypi.tuna.tsinghua.edu.cn/simple/
阿里云: http://mirrors.aliyun.com/pypi/simple/
中国科技大学: https://pypi.mirrors.ustc.edu.cn/simple/
豆瓣(douban):http://pypi.douban.com/simple/
清华大学: https://pypi.tuna.tsinghua.edu.cn/simple/
中国科学技术大学: http://pypi.mirrors.ustc.edu.cn/simple/
选用的是清华源
修改为
pip install --no-deps torchvision -i https://pypi.tuna.tsinghua.edu.cn/simple/
重新安装成功了
文章来源:https://www.toymoban.com/news/detail-434163.html
文章来源地址https://www.toymoban.com/news/detail-434163.html
到了这里,关于ReadTimeoutError: HTTPSConnectionPool(host=‘files.pythonhosted.org‘, port=443)的文章就介绍完了。如果您还想了解更多内容,请在右上角搜索TOY模板网以前的文章或继续浏览下面的相关文章,希望大家以后多多支持TOY模板网!