pip 换源

常用国内镜像源   

    阿里云:https://mirrors.aliyun.com/pypi/simple
    清华:https://pypi.tuna.tsinghua.edu.cn/simple
    中国科技大学 https://pypi.mirrors.ustc.edu.cn/simple/
    华中理工大学:http://pypi.hustunique.com/
    山东理工大学:http://pypi.sdutlinux.org/
    豆瓣:http://pypi.douban.com/simple/

临时修改

在用pip安装软件时用-i指定

pip install 包名 -i 镜像地址

永久修改

编辑pip.conf文件,在用户目录/.pip/中,没有的话直接新建

vi  ~/.pip/pip.conf

添加如下内容

[global]
index-url = 镜像地址

你可能感兴趣的:(pip 换源)