---
title: pip3安装软件包时，出现timed out报错
description: "使用pip3下载相关依赖报错，比如执行pip3 install scipy进行安装出现timed out错误，如下图所示："
url: https://www.hiascend.com/document/detail/zh/canncommercial/latest/softwareinst/instg/instg_0076.html
sourcePath: /source/zh/canncommercial/900/softwareinst/instg/instg_0076.html
indexId: 2eb9661b98e2110c9fd33ca6b62b417c605fb1f8ac112f19e7f9cfbfcce2e11f64
---
# pip3安装软件包时，出现timed out报错

#### 问题描述

使用pip3下载相关依赖报错，比如执行pip3 install scipy进行安装出现timed out错误，如下图所示：


#### 可能原因

网络不稳定的情况下，下载时间长而且下载速度慢，尤其是下载numpy和scipy这种较大的包的时候socket数据通信会经常出现这个问题。


#### 解决措施

用-i参数来指定常用的其它源，如下命令所示：


```
pip3 install scipy -i
xxx
```

xxx请用户根据需求自行填写可用的源。
