pycharm碰到tensorflow下载超时的问题
Posted zutterlly
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了pycharm碰到tensorflow下载超时的问题相关的知识,希望对你有一定的参考价值。
error:
raise ReadTimeoutError(self._pool, None, ‘Read timed out.‘)
pip._vendor.urllib3.exceptions.ReadTimeoutError: HTTPSConnectionPool(host=‘mirrors.tuna.tsinghua.edu.cn‘, port=443): Read timed ou
t.
在下载路径已是国内镜像的情况下,解决办法:
pip --default-timeout=100 install -XXXX
也可加上国内镜像,如下做法:
pip --default-timeout=100 install -i https://pypi.mirrors.ustc.edu.cn/simple/ tensorflow
https://pypi.tuna.tsinghua.edu.cn/simple/ # 清华大学
https://mirrors.aliyun.com/pypi/simple/ # 阿里云
https://pypi.douban.com/simple/ # 豆瓣
https://pypi.mirrors.ustc.edu.cn/simple/ # 中国科学技术大学
https://pypi.hustunique.com/ # 华中科技大学
以上是关于pycharm碰到tensorflow下载超时的问题的主要内容,如果未能解决你的问题,请参考以下文章
搭建TensorFlow中碰到的一些问题(TensorBoard不是内部或外部指令也不是可运行的程序)~