pip 提速方法

 

Python 包管理软件 pip 在默认情况下,下载安装 Python 包太慢,容易失败。以下给出解决方案。

pip install 的选项说明如下:

Package Index Options:
  -i, --index-url <url>       Base URL of Python Package Index (default https://pypi.python.org/simple/).

则从豆瓣的 pypi 源安装命令如下 (以安装 sphinx 为例),

注1:如果有wanrning,尝试使用 http 代替 https

注2:执行时最好加上 sudo

pip install -i https://pypi.douban.com/simple/ sphinx

其它镜像,

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

 

完。

 

posted @ 2017-12-07 19:57  Anonymous596  阅读(1136)  评论(0编辑  收藏  举报