Explorar el Código

Improved check_requirements() robustness (#3298)

Add try: except clause on missing requirements install to catch install failures. Prompted by Ultralytics YOLOv5 API failure on Cython.
modifyDataloader
Glenn Jocher GitHub hace 3 años
padre
commit
9f3a388cea
No se encontró ninguna clave conocida en la base de datos para esta firma ID de clave GPG: 4AEE18F83AFDEB23
Se han modificado 1 ficheros con 4 adiciones y 1 borrados
  1. +4
    -1
      utils/general.py

+ 4
- 1
utils/general.py Ver fichero

@@ -137,7 +137,10 @@ def check_requirements(requirements='requirements.txt', exclude=()):
except Exception as e: # DistributionNotFound or VersionConflict if requirements not met
n += 1
print(f"{prefix} {r} not found and is required by YOLOv5, attempting auto-update...")
print(subprocess.check_output(f"pip install '{r}'", shell=True).decode())
try:
print(subprocess.check_output(f"pip install '{r}'", shell=True).decode())
except Exception as e:
print(f'{prefix} {e}')

if n: # if packages updated
source = file.resolve() if 'file' in locals() else requirements

Cargando…
Cancelar
Guardar