(base) C:\Users\Administrator>pip install random WARNING: Retrying (Retry(total=4, connect=None, read=None, redirect=None, status=None)) after connection broken by 'ConnectTimeoutError(<pip._vendor.urllib3.connection.HTTPSConnection object at 0x000001A397A72080>, 'Connection to pypi.org timed out. (connect timeout=15)')': /simple/random/
时间: 2023-07-03 19:06:30 浏览: 268
基于pip install django失败时的解决方法
这个警告是由于连接超时导致的,你可以尝试使用以下命令来安装:
```
pip install --default-timeout=100 random
```
这样可以将连接超时时间延长到100秒,以提高连接成功的概率。
阅读全文