美文网首页
npm、pip、docker更换国内镜像源

npm、pip、docker更换国内镜像源

作者: qlh831 | 来源:发表于2020-09-01 09:31 被阅读0次

    npm 更换源

    npm config set registry http://registry.npm.taobao.org
    

    pip 更换源

    临时使用

    pip install -i https://pypi.tuna.tsinghua.edu.cn/simple some-package
    

    设为默认

    pip install pip -U
    pip config set global.index-url https://pypi.tuna.tsinghua.edu.cn/simple
    

    更多帮助

    docker 源

    修改/etc/docker/daemon.json文件

    {
        "registry-mirrors": ["https://registry.docker-cn.com"]
    }
    

    Docker中国区官方镜像地址: https://registry.docker-cn.com
    网易镜像地址: http://hub-mirror.c.163.com
    中科大镜像地址: https://docker.mirrors.ustc.edu.cn

    相关文章

      网友评论

          本文标题:npm、pip、docker更换国内镜像源

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