python 配置pip镜像地址

Python小技巧之pip国内镜像设置
国内镜像列表
豆瓣: http://pypi.doubanio.com/simple/
清华: https://pypi.tuna.tsinghua.edu.cn/simple
科大: https://mirrors.ustc.edu.cn/pypi/web/simple/
择一即可。

设置镜像提速pip
步步为营法
直接在 pip install xxx 后加上 镜像源 即可,如:
pip install flask -i http://pypi.douban.com/simple

新建如下路径

C:\Users\Administrator\pip

在pip文件夹中新建pip.ini文件

写入如下内容

[global]
trusted-host=mirrors.aliyun.com
index-url=http://mirrors.aliyun.com/pypi/simple/

保存,搞定。重新打开cmd,然后再感受一下pip安装一些东西的速度吧

你可能感兴趣的:(首)