custom_nodes / ComfyUI-Impact-Pack /modules /impact /additional_dependencies.py
gartajackhats1985's picture
Upload 171 files
c37b2dd verified
raw
history blame
422 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'])