docs/articles_en/get-started/install-openvino/install-openvino-conan.rst
.. meta:: :description: Learn how to install OpenVINO™ Runtime on Windows, Linux, and macOS operating systems, using Conan Package Manager.
.. note::
Note that the Conan Package Manager distribution:
Before installing OpenVINO, see the
:doc:System Requirements page <../../../about-openvino/release-notes-openvino/system-requirements>.
.. note:: This community-maintained distribution channel is provided to help users explore and evaluate OpenVINO.
Please note that accuracy, performance, and behavior may differ from officially supported OpenVINO distributions, and are not guaranteed by the OpenVINO team in this channel. Due to the community-driven nature of this distribution channel, the OpenVINO team does not guarantee timely updates aligned with official releases, nor update availability for all OpenVINO versions.
For production deployments and product integration, we recommend using officially supported distribution channels (for example, official S3 archives or PyPI packages), which provide validated builds and defined guarantees.
Installing OpenVINO Runtime with Conan Package Manager ############################################################
Install Conan <https://docs.conan.io/2/installation.html>__ 2.0.8 or higher, for example, using pip:
.. code-block:: sh
python3 -m pip install 'conan>=2.0.8'
Create a conanfile.txt file for your OpenVINO project and add "openvino" dependency in there:
.. code-block:: sh
[requires] openvino/2026.1.0 [generators] CMakeDeps CMakeToolchain [layout] cmake_layout
Run the command below to create conan_toolchain.cmake file, which will be used to compile your project with OpenVINO:
.. code-block:: sh
conan install conanfile.txt --build=missing
By default, OpenVINO is statically compiled, together with all available
plugins and frontends. To build a version tailored to your needs, check
what options there are on the Conan Package Manager page for OpenVINO <https://conan.io/center/recipes/openvino>__
and extend the command, like so:
.. code-block:: sh
conan install conanfile.txt --build=missing -o:h 'openvino/:enable_intel_gpu=False' -o:h 'openvino/:enable_onnx_frontend=False' -o:h 'openvino/*:shared=True'
Configure and compile your project with OpenVINO:
.. code-block:: sh
cmake -DCMAKE_TOOLCHAIN_FILE=<path to conan_toolchain.cmake> -DCMAKE_BUILD_TYPE=Release -S <path to CMakeLists.txt of your project> -B <build dir> cmake --build <build dir> --parallel
.. note::
OpenVINO can be used with any build interface, as long as it is supported by Conan 2.0. Read more <https://docs.conan.io/2/examples/tools.html>__.
Additional Resources ########################
Conan Package Manager <https://conan.io>__.OpenVINO Workflow <../../../openvino-workflow>.Model Preparation <../../../openvino-workflow/model-preparation>.Inference with OpenVINO Runtime <../../../openvino-workflow/running-inference>.OpenVINO toolkit Samples Overview <../../../get-started/learn-openvino/openvino-samples>.product home page <https://software.intel.com/en-us/openvino-toolkit>__.