3v324v23's picture
lfs
1e3b872
raw
history blame contribute delete
410 Bytes
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'])