pip安装 出现 Error:Cannot unpack file 采用国内镜像安装
以安装jieba为例,在命令行中直接输入命令:pip install jieba,如果下载速度很慢,或者下载失败,建议使用国内源下载。
如果出现:“Error:Cannot unpack file”的情况,以jieba为例,如下图所示:
pip3 install jieba==0.42.1 https://pypi.tuna.tsinghua.edu.cn/simple
出现:
使用命令:pip install -i https://pypi.tuna.tsinghua.edu.cn/simple --trusted-host pypi.tuna.tsinghua.edu.cn 包名
或
使用命令:pip install 包名 -i https://pypi.tuna.tsinghua.edu.cn/simple --trusted-host pypi.tuna.tsinghua.edu.cn