ERROR: Cannot unpack file C:\Users\86153\AppData\Local\Temp\pip-unpack-3vob9q61\simple.html (downloaded from C:\Users\86153\AppData\Local\Temp\pip-req-build-mu41nsm3, content-type: text/html); cannot detect archive format ERROR: Cannot determine archive format of C:\Users\86153\AppData\Local\Temp\pip-req-build-mu41nsm3
时间: 2023-06-28 10:10:07 浏览: 330
pip 安装python库出现的unpack问题
5星 · 资源好评率100%
这个错误通常是由于下载的文件内容不正确导致的。请尝试清除pip缓存并重新安装依赖项。可以使用以下命令清除pip缓存:
```
pip cache purge
```
接着重新安装:
```
pip install -r requirements.txt
```
如果问题仍然存在,可能需要手动下载依赖项并安装。
阅读全文