From 627d480403a797f4fb2377f159da06540eac2ad7 Mon Sep 17 00:00:00 2001 From: henryruhs Date: Tue, 1 Oct 2024 21:50:38 +0200 Subject: [PATCH] Fix Apple Intel --- install.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/install.js b/install.js index 8b28557..1608304 100644 --- a/install.js +++ b/install.js @@ -12,7 +12,7 @@ function install(kernel) { return 'python install.py --onnxruntime directml'; } - if (platform === 'win32' && gpu === 'intel') + if ((platform === 'linux' || platform === 'win32') && gpu === 'intel') { return 'python install.py --onnxruntime openvino'; }