pip更换国内源

感谢博客pip换源一行命令直接搞定

  1. 关键命令:

    1
    2
    3
    pip config set global.index-url https://pypi.tuna.tsinghua.edu.cn/simple
    # 返回结果:
    # Writing to /home/xxx/.config/pip/pip.conf

​ 其中pip根据你使用的pip版本,Python2对应pip,Python3对应pip3

  1. 临时使用源:

    1
    pip install xxx -i https://pypi.tuna.tsinghua.edu.cn/simple

    建议全局更换pip源,方便日后使用。

  2. 各大知名国内源:

    阿里云 http://mirrors.aliyun.com/pypi/simple/

    清华大学 https://pypi.tuna.tsinghua.edu.cn/simple/
    中国科学技术大学 http://pypi.mirrors.ustc.edu.cn/simple/

    豆瓣(douban) http://pypi.douban.com/simple/