Install OpenVINO™ Runtime via Homebrew#
Note
Note that the Homebrew distribution:
offers both C/C++ and Python APIs
does not offer support for NPU inference
is dedicated to macOS (both arm64 and x86_64) and Linux (x86_64 only) users.
GCC 7.5.0 (for Ubuntu 18.04), GCC 9.3.0 (for Ubuntu 20.04) or GCC 11.3.0 (for Ubuntu 22.04)
CMake 3.13 or higher (choose “macOS 10.13 or later”). Add
/Applications/CMake.app/Contents/bin
to path (for default installation).Python 3.8 - 3.12 . Install and add it to path.
Apple Xcode Command Line Tools. In the terminal, run
xcode-select --install
from any directory to install it.(Optional) Apple Xcode IDE (not required for OpenVINO™, but useful for development)
Installing OpenVINO Runtime#
Make sure that you have installed Homebrew on your system. If not, follow the instructions on the Homebrew website to install and configure it.
Run the following command in the terminal:
brew install openvino
Check if the installation was successful by listing all Homebrew packages:
brew list
Congratulations! You’ve just Installed OpenVINO! For some use cases you may still need to install additional components. Check the list of additional configurations to see if your case needs any of them.
Uninstalling OpenVINO#
To uninstall OpenVINO via Homebrew, use the following command:
brew uninstall openvino
What’s Next?#
Now that you’ve installed OpenVINO Runtime, you can try the following things:
Learn more about OpenVINO Workflow.
To prepare your models for working with OpenVINO, see Model Preparation.
See pre-trained deep learning models in our Open Model Zoo.
Important
Due to the deprecation of Open Model Zoo, models in the OpenVINO IR format are now published on Hugging Face.
Learn more about Inference with OpenVINO Runtime.
See sample applications in OpenVINO toolkit Samples Overview.
Check out the OpenVINO product home page.