美文网首页程序员
Pip安装指向清华镜像

Pip安装指向清华镜像

作者: 林天Danny | 来源:发表于2020-07-27 07:10 被阅读0次
  • 临时使用
pip install -i https://pypi.tuna.tsinghua.edu.cn/simple some-package
  • 设为默认
    升级 pip 到最新的版本 (>=10.0.0) 后进行配置:
pip install pip -U
pip config set global.index-url https://pypi.tuna.tsinghua.edu.cn/simple

如果您到 pip 默认源的网络连接较差,临时使用本镜像站来升级 pip:

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

相关文章

网友评论

    本文标题:Pip安装指向清华镜像

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