Skip to content

Commit 5ca8e82

Browse files
authored
Update export.py (ultralytics#11077)
Signed-off-by: Glenn Jocher <[email protected]>
1 parent 3c0a6e6 commit 5ca8e82

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

export.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -413,7 +413,7 @@ def export_edgetpu(file, prefix=colorstr('Edge TPU:')):
413413
cmd = 'edgetpu_compiler --version'
414414
help_url = 'https://coral.ai/docs/edgetpu/compiler/'
415415
assert platform.system() == 'Linux', f'export only supported on Linux. See {help_url}'
416-
if subprocess.run(f'{cmd} >/dev/null', shell=True).returncode != 0:
416+
if subprocess.run(f'{cmd} > /dev/null 2>&1', shell=True).returncode != 0:
417417
LOGGER.info(f'\n{prefix} export requires Edge TPU compiler. Attempting install from {help_url}')
418418
sudo = subprocess.run('sudo --version >/dev/null', shell=True).returncode == 0 # sudo installed on system
419419
for c in (

0 commit comments

Comments
 (0)