美文网首页惠大人工智能
python 库安装 PIP 镜像 国内源国内镜像

python 库安装 PIP 镜像 国内源国内镜像

作者: modao233 | 来源:发表于2019-12-09 00:42 被阅读0次

    对于Python开发的程序员而言,pip 装软件是很重要的环境准备步骤。但由于各种原因,链接官方镜像往往速度不佳,这时,使用国内的镜像不但可以提高下载速度,更可以提高安装成功率,降低安装步骤耗时。
    国内源:

    Ubuntu 16+ 要求使用https源,不要忘记 http后面的 s 哦。

    清华:https://pypi.tuna.tsinghua.edu.cn/simple/

    山东理工大学:https://pypi.sdutlinux.org/

    豆瓣:https://pypi.douban.com/simple/

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

    中国科技大学 https://pypi.mirrors.ustc.edu.cn/simple/华中理工大学:https://pypi.hustunique.com/

    单次使用:

    可以在使用pip的时候加参数-i https://pypi.mirrors.ustc.edu.cn/simple/

    栗子一枚:pip install -i https://pypi.mirrors.ustc.edu.cn/simple/ requests,这样就会从USTC这边的镜像去安装requests库。
    pip install face_recognition -i https://pypi.tuna.tsinghua.edu.cn/simple
    持久化修改:

    如果你在使用Linux,那么可以修改 ~/.pip/pip.conf

    内容如下:

    [global]
    index-url = https://pypi.tuna.tsinghua.edu.cn/simple
    
    [install]
    trusted-host=mirrors.aliyun.com
    

    如果使用Windows上面的 Pip,则需要在用户主目录下创建一个pip.ini,存放同样的内容。

    C:\Users\xxxxx\pip.ini

    相关文章

      网友评论

        本文标题:python 库安装 PIP 镜像 国内源国内镜像

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