美文网首页
实测:百度pip源速度飞起来

实测:百度pip源速度飞起来

作者: LabVIEW_Python | 来源:发表于2022-03-19 10:48 被阅读0次
    为了安装YOLOv5,使用命令:pip install -r requirements.txt, 但之前配置的pip国内源不行,果然换百度源,实测如下: pip百度源速度飞起

    配置步骤:

    pip config set global.index-url https://mirror.baidu.com/pypi/simple

    然后编辑:pip.ini文件如下

    [global]
    index-url = https://mirror.baidu.com/pypi/simple
    [install]
    trusted-host=mirror.baidu.com
    

    Enjoy the high-speed Python package installation!:)

    相关文章

      网友评论

          本文标题:实测:百度pip源速度飞起来

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