File size: 422 Bytes
c37b2dd
 
 
 
 
 
 
 
 
 
 
 
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'])