Spaces:
Running
on
Zero
Running
on
Zero
File size: 422 Bytes
3d5837a |
1 2 3 4 5 6 7 8 9 10 11 12 13 |
import sys
import subprocess
def ensure_onnx_package():
try:
import onnxruntime
except Exception:
if "python_embeded" in sys.executable or "python_embedded" in sys.executable:
subprocess.check_call([sys.executable, '-s', '-m', 'pip', 'install', 'onnxruntime'])
else:
subprocess.check_call([sys.executable, '-s', '-m', 'pip', 'install', 'onnxruntime'])
|