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

我们在安装第三方包的时候,直接使用pip install 速度会比较慢,甚至出现readtime out的问题。
所以我们可以使用国内的镜像源
比如清华镜像源:

https://pypi.tuna.tsinghua.edu.cn/simple

安装命令如下:

pip install https://pypi.tuna.tsinghua.edu.cn/simple package-name

但是这样有可能会导致Cannot unpack file …问题
最后我们可以使用这条命令:

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

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