当前位置: 代码迷 >> 综合 >> Anaconda安装tensorflow失败:socket. timeout:The read operation timed out
  详细解决方案

Anaconda安装tensorflow失败:socket. timeout:The read operation timed out

热度:64   发布时间:2023-11-26 05:44:44.0

使用pip命令安装默认连接间隔时间最大是15s,如果安装过程超过15s,那么就会报错。

可以使用

pip --timeout=100 install url

设置连接最大间隔时间(我设置的是100s),url是你要下载的url连接

  相关解决方案