pip下载包时,报错Cannot unpack file问题

项目场景:

例如:项目场景:conda pip下载包时,出现Cannot unpack file问题


问题描述

这里用安装pycaret包为例:


pip install pycaret[full]
//如果下载速度很慢,或者下载失败,建议使用国内源下载。


//使用清华源
pip install https://pypi.tuna.tsinghua.edu.cn/simple pycaret[full]

常用国内镜像:

阿里云 http://mirrors.aliyun.com/pypi/simple/
中国科技大学 https://pypi.mirrors.ustc.edu.cn/simple/
豆瓣 http://pypi.douban.com/simple/


报错结果:在这里插入图片描述


解决方案


pip install -i https://pypi.tuna.tsinghua.edu.cn/simple --trusted-host pypi.tuna.tsinghua.edu.cn pycaret[full]


**
hello,这里是eating。有什么问题欢迎大家指正哦!
**

你可能感兴趣的:(pip,python,深度学习)