YoloV5遇到的报错(结合其他博主的一些解决方法)

前排:有的问题可以参照这个
https://blog.csdn.net/LMH564123/article/details/132438528?spm=1001.2014.3001.5502

一、今天看小土堆本地训练
运行train文件时候:
报错:

This initial warning can be silenced or aggravated in the future by setting the
$GIT_PYTHON_REFRESH environment variable. Use one of the following values:
    - quiet|q|silence|s|none|n|0: for no warning or exception
    - warn|w|warning|1: for a printed warning
    - error|e|raise|r|2: for a raised exception

Example:
    export GIT_PYTHON_REFRESH=quiet

进程已结束,退出代码1

猜测可能是有墙上不去git
看了下别人
解决方法:
在 import os下面插入语句:

os.environ["GIT_PYTHON_REFRESH"] = "quiet"

二、下载问题
github中下载不了的
就手动下载压缩包并解压查看文件结构
YoloV5遇到的报错(结合其他博主的一些解决方法)_第1张图片
结构运行所报,放在合适的文件夹下面

你可能感兴趣的:(开源项目实战,YOLO)