We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 3c0a6e6 commit 5ca8e82Copy full SHA for 5ca8e82
export.py
@@ -413,7 +413,7 @@ def export_edgetpu(file, prefix=colorstr('Edge TPU:')):
413
cmd = 'edgetpu_compiler --version'
414
help_url = 'https://coral.ai/docs/edgetpu/compiler/'
415
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:
+ if subprocess.run(f'{cmd} > /dev/null 2>&1', shell=True).returncode != 0:
417
LOGGER.info(f'\n{prefix} export requires Edge TPU compiler. Attempting install from {help_url}')
418
sudo = subprocess.run('sudo --version >/dev/null', shell=True).returncode == 0 # sudo installed on system
419
for c in (
0 commit comments