使用pip安装包时,出现Cannot unpack file xxx的问题的解决以及pip安装速度慢或出现readtime out问题的解决

转载https://blog.csdn.net/cn_1937/article/details/81449484

使用了清华大学的源。
https://pypi.tuna.tsinghua.edu.cn/simple
安装命令换成如下方式:

pip install https://pypi.tuna.tsinghua.edu.cn/simple pymysql

这样,就出现了开始的问题。Cannot unpack file xxx、
最终的解决方案

最终,我使用如下命令,成功安装。

pip install -i https://pypi.tuna.tsinghua.edu.cn/simple --trusted-host pypi.tuna.tsinghua.edu.cn pymysql

安装成功!

你可能感兴趣的:(使用pip安装包时,出现Cannot unpack file xxx的问题的解决以及pip安装速度慢或出现readtime out问题的解决)