pip 无法下载包


我在用pip 安装 mycli时,提示信息如下:

(zh)➜ apt pip install mycli

Downloading/unpacking mycli
http://e.pypi.python.org/simple/mycli/ uses an insecure transport scheme (http). Consider using https if e.pypi.python.org has it available
Could not find any downloads that satisfy the requirement mycli
Cleaning up...
No distributions at all found for mycli
Storing debug log for failure in /home/zh/.pip/pip.log

python pip

劳资是来抢劫的 9 years, 3 months ago

这些下载问题很多是因为所照镜像源可能被重定向,需要我们翻墙才可以下载,尝试国内镜像源进行下载

jsczdd answered 9 years, 3 months ago

如果命令没错,那就是局域网的问题了

lcfpop answered 9 years, 3 months ago

https://pypi.python.org/pypi/mycli

直接去这里下好了,pip会因为网络问题导致无法下载,譬如在我们公司pip就什么都下不了……

也有说把源换成豆瓣的 http://pypi.douban.com/simple/ ,但个人感觉,并没什么卵用,该下不了还是下不了。

so,一般遇到pip无法下载的问题,我都是直接 百度/Google 搜 pypi xxx。

永远杯具的超奇 answered 9 years, 3 months ago

指定单个库的安装源v2ex或douban
pip install mycli -i http://pypi.douban.com/simple
pip install mycli -i http://pypi.v2ex.com/simple

天道蓝蓝猫 answered 9 years, 3 months ago

Your Answer