Przeglądaj źródła

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 3 lat temu
rodzic
commit
9f3a388cea
Nie znaleziono w bazie danych klucza dla tego podpisu ID klucza GPG: 4AEE18F83AFDEB23
1 zmienionych plików z 4 dodań i 1 usunięć
  1. +4
    -1
      utils/general.py

+ 4
- 1
utils/general.py Wyświetl plik

@@ -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

Ładowanie…
Anuluj
Zapisz