Skip to main content

OpenVINO(TM) Runtime

Project description

Open-source software toolkit for optimizing and deploying deep learning models.

DocumentationBlogKey FeaturesTutorialsIntegrationsBenchmarksGenerative AI

PyPI Status Anaconda Status brew Status

PyPI Downloads Anaconda Downloads brew Downloads

  • Inference Optimization: Boost deep learning performance in computer vision, automatic speech recognition, generative AI, natural language processing with large and small language models, and many other common tasks.
  • Flexible Model Support: Use models trained with popular frameworks such as PyTorch, TensorFlow, ONNX, Keras, PaddlePaddle, and JAX/Flax. Directly integrate models built with transformers and diffusers from the Hugging Face Hub using Optimum Intel. Convert and deploy models without original frameworks.
  • Broad Platform Compatibility: Reduce resource demands and efficiently deploy on a range of platforms from edge to cloud. OpenVINO™ supports inference on CPU (x86, ARM), GPU (Intel integrated & discrete GPU) and AI accelerators (Intel NPU).
  • Community and Ecosystem: Join an active community contributing to the enhancement of deep learning performance across various domains.

Check out the OpenVINO Cheat Sheet and Key Features for a quick reference.

Installation

Get your preferred distribution of OpenVINO or use this command for quick installation:

pip install -U openvino

Check system requirements and supported devices for detailed information.

Tutorials and Examples

OpenVINO Quickstart example will walk you through the basics of deploying your first model.

Learn how to optimize and deploy popular models with the OpenVINO Notebooks📚:

Discover more examples in the OpenVINO Samples (Python & C++) and Notebooks (Python).

Here are easy-to-follow code examples demonstrating how to run PyTorch and TensorFlow model inference using OpenVINO:

PyTorch Model

import openvino as ov
import torch
import torchvision

# load PyTorch model into memory
model = torch.hub.load("pytorch/vision", "shufflenet_v2_x1_0", weights="DEFAULT")

# convert the model into OpenVINO model
example = torch.randn(1, 3, 224, 224)
ov_model = ov.convert_model(model, example_input=(example,))

# compile the model for CPU device
core = ov.Core()
compiled_model = core.compile_model(ov_model, 'CPU')

# infer the model on random data
output = compiled_model({0: example.numpy()})

TensorFlow Model

import numpy as np
import openvino as ov
import tensorflow as tf

# load TensorFlow model into memory
model = tf.keras.applications.MobileNetV2(weights='imagenet')

# convert the model into OpenVINO model
ov_model = ov.convert_model(model)

# compile the model for CPU device
core = ov.Core()
compiled_model = core.compile_model(ov_model, 'CPU')

# infer the model on random data
data = np.random.rand(1, 224, 224, 3)
output = compiled_model({0: data})

OpenVINO supports the CPU, GPU, and NPU devices and works with models from PyTorch, TensorFlow, ONNX, TensorFlow Lite, PaddlePaddle, and JAX/Flax frameworks. It includes APIs in C++, Python, C, NodeJS, and offers the GenAI API for optimized model pipelines and performance.

Generative AI with OpenVINO

Get started with the OpenVINO GenAI installation and refer to the detailed guide to explore the capabilities of Generative AI using OpenVINO.

Learn how to run LLMs and GenAI with Samples in the OpenVINO™ GenAI repo. See GenAI in action with Jupyter notebooks: LLM-powered Chatbot and LLM Instruction-following pipeline.

Documentation

User documentation contains detailed information about OpenVINO and guides you from installation through optimizing and deploying models for your AI applications.

Developer documentation focuses on the OpenVINO architecture and describes building and contributing processes.

OpenVINO Ecosystem

OpenVINO Tools

Integrations

  • 🤗Optimum Intel - grab and use models leveraging OpenVINO within the Hugging Face API.
  • Torch.compile - use OpenVINO for Python-native applications by JIT-compiling code into optimized kernels.
  • ExecuTorch - use ExecuTorch with OpenVINO to optimize and run AI models efficiently.
  • OpenVINO LLMs inference and serving with vLLM​ - enhance vLLM's fast and easy model serving with the OpenVINO backend.
  • OpenVINO Execution Provider for ONNX Runtime - use OpenVINO as a backend with your existing ONNX Runtime code.
  • LlamaIndex - build context-augmented GenAI applications with the LlamaIndex framework and enhance runtime performance with OpenVINO.
  • LangChain - integrate OpenVINO with the LangChain framework to enhance runtime performance for GenAI applications.
  • Keras 3 - Keras 3 is a multi-backend deep learning framework. Users can switch model inference to the OpenVINO backend using the Keras API.

Check out the Awesome OpenVINO repository to discover a collection of community-made AI projects based on OpenVINO!

Performance

Explore OpenVINO Performance Benchmarks to discover the optimal hardware configurations and plan your AI deployment based on verified data.

Contribution and Support

Check out Contribution Guidelines for more details. Read the Good First Issues section, if you're looking for a place to start contributing. We welcome contributions of all kinds!

You can ask questions and get support on:

Resources

Telemetry

OpenVINO™ collects software performance and usage data for the purpose of improving OpenVINO™ tools. This data is collected directly by OpenVINO™ or through the use of Google Analytics 4. You can opt-out at any time by running the command:

opt_in_out --opt_out

More Information is available at OpenVINO™ Telemetry.

License

OpenVINO™ Toolkit is licensed under Apache License Version 2.0. By contributing to the project, you agree to the license and copyright terms therein and release your contribution under these terms.


* Other names and brands may be claimed as the property of others.

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distributions

No source distribution files available for this release.See tutorial on generating distribution archives.

Built Distributions

If you're not sure about the file name format, learn more about wheel file names.

openvino-2026.2.1-21919-cp314-cp314t-win_amd64.whl (76.3 MB view details)

Uploaded CPython 3.14tWindows x86-64

openvino-2026.2.1-21919-cp314-cp314t-manylinux_2_35_aarch64.whl (25.5 MB view details)

Uploaded CPython 3.14tmanylinux: glibc 2.35+ ARM64

openvino-2026.2.1-21919-cp314-cp314t-manylinux_2_28_x86_64.whl (58.4 MB view details)

Uploaded CPython 3.14tmanylinux: glibc 2.28+ x86-64

openvino-2026.2.1-21919-cp314-cp314t-macosx_11_0_arm64.whl (31.4 MB view details)

Uploaded CPython 3.14tmacOS 11.0+ ARM64

openvino-2026.2.1-21919-cp314-cp314-win_amd64.whl (76.2 MB view details)

Uploaded CPython 3.14Windows x86-64

openvino-2026.2.1-21919-cp314-cp314-manylinux_2_35_aarch64.whl (28.4 MB view details)

Uploaded CPython 3.14manylinux: glibc 2.35+ ARM64

openvino-2026.2.1-21919-cp314-cp314-manylinux_2_28_x86_64.whl (58.4 MB view details)

Uploaded CPython 3.14manylinux: glibc 2.28+ x86-64

openvino-2026.2.1-21919-cp314-cp314-macosx_11_0_arm64.whl (31.2 MB view details)

Uploaded CPython 3.14macOS 11.0+ ARM64

openvino-2026.2.1-21919-cp313-cp313-win_amd64.whl (76.2 MB view details)

Uploaded CPython 3.13Windows x86-64

openvino-2026.2.1-21919-cp313-cp313-manylinux_2_35_aarch64.whl (28.3 MB view details)

Uploaded CPython 3.13manylinux: glibc 2.35+ ARM64

openvino-2026.2.1-21919-cp313-cp313-manylinux_2_28_x86_64.whl (58.4 MB view details)

Uploaded CPython 3.13manylinux: glibc 2.28+ x86-64

openvino-2026.2.1-21919-cp313-cp313-macosx_11_0_arm64.whl (31.2 MB view details)

Uploaded CPython 3.13macOS 11.0+ ARM64

openvino-2026.2.1-21919-cp312-cp312-win_amd64.whl (76.2 MB view details)

Uploaded CPython 3.12Windows x86-64

openvino-2026.2.1-21919-cp312-cp312-manylinux_2_35_aarch64.whl (28.3 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.35+ ARM64

openvino-2026.2.1-21919-cp312-cp312-manylinux_2_28_x86_64.whl (58.4 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.28+ x86-64

openvino-2026.2.1-21919-cp312-cp312-macosx_11_0_arm64.whl (31.2 MB view details)

Uploaded CPython 3.12macOS 11.0+ ARM64

openvino-2026.2.1-21919-cp311-cp311-win_amd64.whl (76.2 MB view details)

Uploaded CPython 3.11Windows x86-64

openvino-2026.2.1-21919-cp311-cp311-manylinux_2_35_aarch64.whl (28.4 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.35+ ARM64

openvino-2026.2.1-21919-cp311-cp311-manylinux_2_28_x86_64.whl (58.4 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.28+ x86-64

openvino-2026.2.1-21919-cp311-cp311-macosx_11_0_arm64.whl (31.1 MB view details)

Uploaded CPython 3.11macOS 11.0+ ARM64

openvino-2026.2.1-21919-cp310-cp310-win_amd64.whl (76.2 MB view details)

Uploaded CPython 3.10Windows x86-64

openvino-2026.2.1-21919-cp310-cp310-manylinux_2_35_aarch64.whl (28.3 MB view details)

Uploaded CPython 3.10manylinux: glibc 2.35+ ARM64

openvino-2026.2.1-21919-cp310-cp310-manylinux_2_28_x86_64.whl (58.3 MB view details)

Uploaded CPython 3.10manylinux: glibc 2.28+ x86-64

openvino-2026.2.1-21919-cp310-cp310-macosx_11_0_arm64.whl (31.1 MB view details)

Uploaded CPython 3.10macOS 11.0+ ARM64

File details

Details for the file openvino-2026.2.1-21919-cp314-cp314t-win_amd64.whl.

File metadata

File hashes

Hashes for openvino-2026.2.1-21919-cp314-cp314t-win_amd64.whl
Algorithm Hash digest
SHA256 7ebc506896b082acd744b479d400e090ed566c7d1ff64a0071f2d54460032f9a
MD5 bd835dc13ea1015030d188e6888e8fba
BLAKE2b-256 a560a8fd84f8289003dec261840f32a06476c793830d4562c2c2d76724ffdcc6

See more details on using hashes here.

File details

Details for the file openvino-2026.2.1-21919-cp314-cp314t-manylinux_2_35_aarch64.whl.

File metadata

File hashes

Hashes for openvino-2026.2.1-21919-cp314-cp314t-manylinux_2_35_aarch64.whl
Algorithm Hash digest
SHA256 daf95cfd841070e17588f66826a59cccb562beceb98ce78637e3296dfecbce3c
MD5 166c06302f86608bd3ce4fcf4e7e6bd8
BLAKE2b-256 aa0656015860afcb19f20a684a2b1fa6f8662b53db7dde0b5219ce73e250d5f4

See more details on using hashes here.

File details

Details for the file openvino-2026.2.1-21919-cp314-cp314t-manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for openvino-2026.2.1-21919-cp314-cp314t-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 863c55be074494a0e879f780eb2a7b25cf102105fd1835af1046376fbcb35a93
MD5 2c295129d7df446a80a0e5ab2e05016d
BLAKE2b-256 3871890efb337ad5d0ab1e70bfb0e3382bbb9efaed1f67dd27b77a275acbec13

See more details on using hashes here.

File details

Details for the file openvino-2026.2.1-21919-cp314-cp314t-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for openvino-2026.2.1-21919-cp314-cp314t-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 8a4d99ffc01216fe7fbb41b246db2d92ae00a7e980de9e1c8ead5eac81ca3202
MD5 6ad71dff453e4db73dbd4288f87aa60c
BLAKE2b-256 18e68c6942a06b86bdea8e55c630770946f5ef5d17a4131cec2ff677a1d836fb

See more details on using hashes here.

File details

Details for the file openvino-2026.2.1-21919-cp314-cp314-win_amd64.whl.

File metadata

File hashes

Hashes for openvino-2026.2.1-21919-cp314-cp314-win_amd64.whl
Algorithm Hash digest
SHA256 c53788fcf66b5059eb5feeaba8f96782f3b672ea760df7cebbb96a28467eb472
MD5 96ce9c5b792ccd91921a66687fc8fc18
BLAKE2b-256 5c2cc4f651c675c0271efdf7733c1a1adc9bfbf6cfcb5fce384565582f65e646

See more details on using hashes here.

File details

Details for the file openvino-2026.2.1-21919-cp314-cp314-manylinux_2_35_aarch64.whl.

File metadata

File hashes

Hashes for openvino-2026.2.1-21919-cp314-cp314-manylinux_2_35_aarch64.whl
Algorithm Hash digest
SHA256 6fb513f36dde11dcccf5143e44b37bb64368689e3d746c283e9907e181e32226
MD5 35aaab989929956b7d6245080a5660c1
BLAKE2b-256 454ec0730932f7e0c34f627cedb569ac1f21222c4c5e0ed904a7f86e4508849d

See more details on using hashes here.

File details

Details for the file openvino-2026.2.1-21919-cp314-cp314-manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for openvino-2026.2.1-21919-cp314-cp314-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 0ec716ddd84a63534613171d27c8657c8417734a1cccedeb40533e8673a12c6d
MD5 0cb358a09de1d85bedcc77fda1574cbe
BLAKE2b-256 4365b7f2a382e1da48c6cce109e7960714aa0a0608f2fb6b00388594b5d8edd2

See more details on using hashes here.

File details

Details for the file openvino-2026.2.1-21919-cp314-cp314-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for openvino-2026.2.1-21919-cp314-cp314-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 3f1dfd9d8ffbe21c2d40089c8137903432535b89ee8eb3d177b75604f4273ad4
MD5 002d2e8aa3238ad14a0718ecc5d5a3f1
BLAKE2b-256 1dc01bd1e01be4eb7434711638b551521b3859f6df13a7b5cdaf591870ee9065

See more details on using hashes here.

File details

Details for the file openvino-2026.2.1-21919-cp313-cp313-win_amd64.whl.

File metadata

File hashes

Hashes for openvino-2026.2.1-21919-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 197435104d18657a7cc4d05850615b913618ebb0d3baaec052fda25a2d831c74
MD5 5ad05998aa767ebdd0888318f5cb30da
BLAKE2b-256 eee513b9bfc20c02706d015e96e5b3e932227d658b3826b4aa5007cdc2455ed4

See more details on using hashes here.

File details

Details for the file openvino-2026.2.1-21919-cp313-cp313-manylinux_2_35_aarch64.whl.

File metadata

File hashes

Hashes for openvino-2026.2.1-21919-cp313-cp313-manylinux_2_35_aarch64.whl
Algorithm Hash digest
SHA256 f9619c51027b6b0514e82ade09794b109a45553e8afcb073eedb1c8c1ffd43c4
MD5 10f2204eb294b3da4c7158dbbd28a49c
BLAKE2b-256 ba913f402a78755c1c848128126f145fc32a6d091c2257c543522d9ca979456a

See more details on using hashes here.

File details

Details for the file openvino-2026.2.1-21919-cp313-cp313-manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for openvino-2026.2.1-21919-cp313-cp313-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 00483723163c8d4d6f436ad0e4d05247494de4d280e4b065f67c537b440f4b56
MD5 af909188e3b6e9cdbc11ff9c9fdb8704
BLAKE2b-256 ba417045a639e3879b0c858533f64c93e9c998f292b810dfaff58c23540c738a

See more details on using hashes here.

File details

Details for the file openvino-2026.2.1-21919-cp313-cp313-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for openvino-2026.2.1-21919-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 3ddd393566ab5cdcf106028e532f0f3789d7796fac848284c4d2ef31e3b81ef8
MD5 869069636eee41397cc0fe1145f40818
BLAKE2b-256 64b55788f1ce7906f33f003de3bb55c2477d9911c19f72d7ed3f7b719538d4a3

See more details on using hashes here.

File details

Details for the file openvino-2026.2.1-21919-cp312-cp312-win_amd64.whl.

File metadata

File hashes

Hashes for openvino-2026.2.1-21919-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 6928a707c447dbd43dab62c8bbc24a7953fd1b5e1fbea0f89a4135ca1ee4083b
MD5 4f2b5dcc9c652dd705509b35e5dc03fe
BLAKE2b-256 9381f4605ab2bdbb3daff7cadf7d5265e87c4fe95d01af00ae8e1638b9a4abe9

See more details on using hashes here.

File details

Details for the file openvino-2026.2.1-21919-cp312-cp312-manylinux_2_35_aarch64.whl.

File metadata

File hashes

Hashes for openvino-2026.2.1-21919-cp312-cp312-manylinux_2_35_aarch64.whl
Algorithm Hash digest
SHA256 6154b26f63804cb671e20b8872abccafbe88b15fdd41fbd35ffa08bb4ac5e29b
MD5 4fe2a405dff59f6804d9b0e4b2e386f9
BLAKE2b-256 a01fe43283e3a2879b0ebdf1b4591461504255bfc639471ea3698a35ebcbcab2

See more details on using hashes here.

File details

Details for the file openvino-2026.2.1-21919-cp312-cp312-manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for openvino-2026.2.1-21919-cp312-cp312-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 efae5ceb94943aeab8a3be04241cbb89110070ce9bacfbfbe947d8d7ef691a82
MD5 ae9e2e5bfb91731e0d90b994867e1c42
BLAKE2b-256 62c246b88970c6d8ff40703b58a96bec40c354ca1e6977511e01af0fa0f12b8a

See more details on using hashes here.

File details

Details for the file openvino-2026.2.1-21919-cp312-cp312-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for openvino-2026.2.1-21919-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 7afed0219cd29fa73f54b7351ffab8e7c7fefb64290dd5264d7c447617ee09ff
MD5 20659203d54e4782566c0660fb5c015c
BLAKE2b-256 c9255c3e836afd92c9c07a411ea9af9e9ac3fff40aae612e93c5c0a997da83a1

See more details on using hashes here.

File details

Details for the file openvino-2026.2.1-21919-cp311-cp311-win_amd64.whl.

File metadata

File hashes

Hashes for openvino-2026.2.1-21919-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 a3c775db07981aa1d995f0fe587a4bc5384dcbda9c1fecdfad9bb6f20f340782
MD5 5145d60aaae2b2d4da3eb451175cec5c
BLAKE2b-256 7ea60b7104491b55b31596cfc2228f7b4b4469ab6e01d12e30795eebd94d13ed

See more details on using hashes here.

File details

Details for the file openvino-2026.2.1-21919-cp311-cp311-manylinux_2_35_aarch64.whl.

File metadata

File hashes

Hashes for openvino-2026.2.1-21919-cp311-cp311-manylinux_2_35_aarch64.whl
Algorithm Hash digest
SHA256 8d839065ba0b1098cdcce7049d0f1c4fb97f422e6450b9aea63f1aedea1a2154
MD5 1f6024d8ec865388280ba00faab9a619
BLAKE2b-256 74e34c8c164cf98f7db7c3131d55ee31e5d59aff685a7c77bcfc03661ea601e4

See more details on using hashes here.

File details

Details for the file openvino-2026.2.1-21919-cp311-cp311-manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for openvino-2026.2.1-21919-cp311-cp311-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 3a7f4ec8ed2a7ae4069a96ded7f9ff9b7a97230e411141db8b68669ba43c0bde
MD5 705b1ffa53cbe253a46f0ac378db3ebc
BLAKE2b-256 6d096e5c9485e70bef82a43cd9499539dd671f49c850f4dbcb21fcbadf3f22cc

See more details on using hashes here.

File details

Details for the file openvino-2026.2.1-21919-cp311-cp311-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for openvino-2026.2.1-21919-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 616cdf8298a725e5a31a01049e8cf2b0cb8e6b9f90e523c75dbfe0af2834f592
MD5 12ff1c0b72c7fa1228ddbc66a4655245
BLAKE2b-256 8ab5726e3028016bdbbfe3e0f939666df04a6ba2a0ff61619b5ed07834bef89b

See more details on using hashes here.

File details

Details for the file openvino-2026.2.1-21919-cp310-cp310-win_amd64.whl.

File metadata

File hashes

Hashes for openvino-2026.2.1-21919-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 1de5210f7fefc2e3fc53979468866af2317172f10b5790908d2a319dc723c76f
MD5 e15bda7f07cfab1c4d477b0ab301b5a5
BLAKE2b-256 cccafecdae61f9552cc6576f5e062365f031a0f0dce4cba8bf22c2173e24a5f5

See more details on using hashes here.

File details

Details for the file openvino-2026.2.1-21919-cp310-cp310-manylinux_2_35_aarch64.whl.

File metadata

File hashes

Hashes for openvino-2026.2.1-21919-cp310-cp310-manylinux_2_35_aarch64.whl
Algorithm Hash digest
SHA256 e79486128bd00d241b0369a11a7945af936ad8f2dae0a73c543e43caf5d60629
MD5 0ba8df1034d5055bf683cdf908137786
BLAKE2b-256 01e6b69d2e8f5944af172881ef8388d8bf8b109aaaf669e15d5e2c1ed2e4cd60

See more details on using hashes here.

File details

Details for the file openvino-2026.2.1-21919-cp310-cp310-manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for openvino-2026.2.1-21919-cp310-cp310-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 5de0655960bee1faea841cc742c443ade2b9ddd6d2490f20aae5f50f37f6be77
MD5 2bfc082333e7e959a4d84dc1385349d0
BLAKE2b-256 47d1ea0aed79a2cbcc91c7e9dfba672a162b3d9e74776b3a92b12d3bc9d6bf04

See more details on using hashes here.

File details

Details for the file openvino-2026.2.1-21919-cp310-cp310-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for openvino-2026.2.1-21919-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 1136529e5c2dff81499febf3d46bdcc461aad2e76245fa3bd3d6412f55c6f2a7
MD5 590559ca8412f7c77a975b191034ca38
BLAKE2b-256 78806cba7bd7ce72a580b4e100d1cd7c28645f9a93c63f43f0b214871ef13b88

See more details on using hashes here.

Supported by

AWS Cloud computing and Security Sponsor Datadog Monitoring Depot Continuous Integration Fastly CDN Google Download Analytics Pingdom Monitoring Sentry Error logging StatusPage Status page