当前位置: 代码迷 >> 综合 >> Windows10 Python安装TensorFlow-gpu下载速度太慢
  详细解决方案

Windows10 Python安装TensorFlow-gpu下载速度太慢

热度:79   发布时间:2023-12-02 10:37:45.0

在安装TensorFlow时,速度只有十几K。

直接上方法:

- 指定清华源下载:

pip install -i https://pypi.tuna.tsinghua.edu.cn/simple/ --upgrade tensorflow-gpu==1.13.2

这里我需要的是1.13.2版本。

- 防止超时:

pip --default-timeout=1000000 install -U -i https://pypi.tuna.tsinghua.edu.cn/simple/ --upgrade tensorflow-gpu==1.13.2

另外,还有国内可用的其他镜像源:

清华:https://pypi.tuna.tsinghua.edu.cn/simple
阿里云:http://mirrors.aliyun.com/pypi/simple/
中国科技大学 https://pypi.mirrors.ustc.edu.cn/simple/
华中理工大学:http://pypi.hustunique.com/
山东理工大学:http://pypi.sdutlinux.org/
豆瓣:http://pypi.douban.com/simple/

只需直接替换就OK了。

在上述镜像源中,对比可知,阿里云的速度应该是最快的。

提示:
如果报错如下:

WARNING: The repository located at mirrors.aliyun.com is not a trusted or secure host and is being 
ignored. If this repository is available via HTTPS we recommend you use HTTPS instead, otherwiseyou may silence this warning and allow it anyway with '--trusted-host mirrors.aliyun.com'.

则将命令后面加上–trusted-host mirrors.aliyun.com :

pip --default-timeout=1000000 install -U -i http://mirrors.aliyun.com/pypi/simple/ --upgrade tensorflow-gpu==1.13.2 --trusted-host mirrors.aliyun.com