美文网首页
pip 使用国内镜像源

pip 使用国内镜像源

作者: 别瞄我 | 来源:发表于2017-05-05 10:29 被阅读105次
    国内源推荐

    新版ubuntu要求使用https源,要注意
    清华:https://pypi.tuna.tsinghua.edu.cn/simple
    阿里云:http://mirrors.aliyun.com/pypi/simple/
    中国科技大学 https://pypi.mirrors.ustc.edu.cn/simple/
    华中理工大学:http://pypi.hustunique.com/
    山东理工大学:http://pypi.sdutlinux.org/
    豆瓣:http://pypi.douban.com/simple/

    临时使用法

    可以在使用 pip 的时候加参数 -i https://pypi.tuna.tsinghua.edu.cn/simple
    示例:pip install -i https://pypi.tuna.tsinghua.edu.cn/simple pyspider

    一劳永逸法

    Linux 下,修改 ~/.pip/pip.conf (没有就创建一个文件夹及文件。文件夹要加“.”,表示是隐藏文件夹)
    内容如下:

    [global]
    timeout = 6000
    index-url = http://pypi.douban.com/simple/ 
    [install]
    use-mirrors = true
    mirrors = http://pypi.douban.com/simple/ 
    trusted-host = pypi.douban.com
    

    Windows下,直接在user目录中创建一个pip目录,如:C:\Users\xx\pip,新建文件pip.ini,内容同上。

    相关文章

      网友评论

          本文标题:pip 使用国内镜像源

          本文链接:https://www.haomeiwen.com/subject/wjpjtxtx.html