关于pip install错误问题个人总结

首先问题就是安装源
这个可以去https://blog.csdn.net/chenghuikai/article/details/55258957中学习

也可以直接使用 - i 来指定使用哪个 url,如下图所示:

pip install -i http://pypi.douban.com/simple/ 包名

但是我发现还是装不上去
出现许多警告WARNING: The repository located at mirrors.aliyun.com is not a trusted or secure host and is being ignored. If this repository is available via HTTPS we recommend you use HTTPS instead, otherwise you may silence this warning and allow it anyway with '--trusted-host mirrors.aliyun.com'.

发现不是https协议的网址都会被忽略掉,取消忽略它也给了方法
otherwise you may silence this warning and allow it anyway with ‘–trusted-host mirrors.aliyun.com’.`

pip install -i --trusted-host http://pypi.douban.com/simple/ 包名

但后面又出现已经下载了包,却无法解析
出现了Cannot unpack file的错误
关于pip install错误问题个人总结_第1张图片
无论安装什么包都是这样,开始以为是Windows权限的问题
但是我给足了权限依然还是报错,上网查了下,虽然有答案但是都不够清楚。。

pip install -i --extra-index-url http://pypi.douban.com/simple/ 包名

可能我比较蠢吧

最后问了一下身边的一个Python大佬完美解决了这个问题∩_∩解决方法在下面:

pip install -i http://pypi.douban.com/simple/ --trusted-host pypi.douban.com 包名

关于pip install错误问题个人总结_第2张图片

你可能感兴趣的:(问题解决)