Skip to content

Commit

Permalink
Fix Apple Intel
Browse files Browse the repository at this point in the history
  • Loading branch information
henryruhs committed Oct 1, 2024
1 parent 5e88498 commit 627d480
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion install.js
Original file line number Diff line number Diff line change
Expand Up @@ -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';
}
Expand Down

0 comments on commit 627d480

Please sign in to comment.