实测:百度pip源速度飞起来
2022-03-19 本文已影响0人
LabVIEW_Python
为了安装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!:)