美文网首页
pypi镜像源替换

pypi镜像源替换

作者: 与狼共舞666 | 来源:发表于2022-04-30 19:50 被阅读0次

    pypi 镜像使用帮助
    pypi 镜像在每次同步成功后间隔 5 分钟同步一次。

    临时使用
    pip install -i https://pypi.tuna.tsinghua.edu.cn/simple some-package
    注意,simple 不能少, 是 https 而不是 http

    设为默认
    升级 pip 到最新的版本 (>=10.0.0) 后进行配置:

    python -m pip install --upgrade pip(同pip install pip -U)
    pip config set global.index-url https://pypi.tuna.tsinghua.edu.cn/simple
    如果您到 pip 默认源的网络连接较差,临时使用本镜像站来升级 pip:

    python -m pip install -i https://pypi.tuna.tsinghua.edu.cn/simple --upgrade pip

    相关文章

      网友评论

          本文标题:pypi镜像源替换

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