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.0-21903-cp314-cp314t-win_amd64.whl (76.3 MB view details)

Uploaded CPython 3.14tWindows x86-64

openvino-2026.2.0-21903-cp314-cp314t-manylinux_2_35_aarch64.whl (25.5 MB view details)

Uploaded CPython 3.14tmanylinux: glibc 2.35+ ARM64

openvino-2026.2.0-21903-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.0-21903-cp314-cp314t-macosx_11_0_arm64.whl (31.4 MB view details)

Uploaded CPython 3.14tmacOS 11.0+ ARM64

openvino-2026.2.0-21903-cp314-cp314-win_amd64.whl (76.2 MB view details)

Uploaded CPython 3.14Windows x86-64

openvino-2026.2.0-21903-cp314-cp314-manylinux_2_35_aarch64.whl (28.4 MB view details)

Uploaded CPython 3.14manylinux: glibc 2.35+ ARM64

openvino-2026.2.0-21903-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.0-21903-cp314-cp314-macosx_11_0_arm64.whl (31.2 MB view details)

Uploaded CPython 3.14macOS 11.0+ ARM64

openvino-2026.2.0-21903-cp313-cp313-win_amd64.whl (76.2 MB view details)

Uploaded CPython 3.13Windows x86-64

openvino-2026.2.0-21903-cp313-cp313-manylinux_2_35_aarch64.whl (28.4 MB view details)

Uploaded CPython 3.13manylinux: glibc 2.35+ ARM64

openvino-2026.2.0-21903-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.0-21903-cp313-cp313-macosx_11_0_arm64.whl (31.2 MB view details)

Uploaded CPython 3.13macOS 11.0+ ARM64

openvino-2026.2.0-21903-cp312-cp312-win_amd64.whl (76.2 MB view details)

Uploaded CPython 3.12Windows x86-64

openvino-2026.2.0-21903-cp312-cp312-manylinux_2_35_aarch64.whl (28.4 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.35+ ARM64

openvino-2026.2.0-21903-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.0-21903-cp312-cp312-macosx_11_0_arm64.whl (31.2 MB view details)

Uploaded CPython 3.12macOS 11.0+ ARM64

openvino-2026.2.0-21903-cp311-cp311-win_amd64.whl (76.2 MB view details)

Uploaded CPython 3.11Windows x86-64

openvino-2026.2.0-21903-cp311-cp311-manylinux_2_35_aarch64.whl (28.4 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.35+ ARM64

openvino-2026.2.0-21903-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.0-21903-cp311-cp311-macosx_11_0_arm64.whl (31.1 MB view details)

Uploaded CPython 3.11macOS 11.0+ ARM64

openvino-2026.2.0-21903-cp310-cp310-win_amd64.whl (76.2 MB view details)

Uploaded CPython 3.10Windows x86-64

openvino-2026.2.0-21903-cp310-cp310-manylinux_2_35_aarch64.whl (28.4 MB view details)

Uploaded CPython 3.10manylinux: glibc 2.35+ ARM64

openvino-2026.2.0-21903-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.0-21903-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.0-21903-cp314-cp314t-win_amd64.whl.

File metadata

File hashes

Hashes for openvino-2026.2.0-21903-cp314-cp314t-win_amd64.whl
Algorithm Hash digest
SHA256 d55fb289b41df099ad708e836c23e4bebda8248623fadf26e02d085ddd16865e
MD5 684baaf824b0c646204844c48fc5d35b
BLAKE2b-256 4a7131dbf2238e2c249b662047159aba43a4f86792101c03b3c65865625cd903

See more details on using hashes here.

File details

Details for the file openvino-2026.2.0-21903-cp314-cp314t-manylinux_2_35_aarch64.whl.

File metadata

File hashes

Hashes for openvino-2026.2.0-21903-cp314-cp314t-manylinux_2_35_aarch64.whl
Algorithm Hash digest
SHA256 b8f0b876e73d3cd1fa09d70834039227514073dd604f9796e439da001046fb75
MD5 974d097cec4fce4d497d827c6ac81ce2
BLAKE2b-256 771b8389bae5d4d1c24c53321126b2454c001c74c0751bc5546042675e05eb98

See more details on using hashes here.

File details

Details for the file openvino-2026.2.0-21903-cp314-cp314t-manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for openvino-2026.2.0-21903-cp314-cp314t-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 3ffdf1b1b18b10c84967acbe768a0b390cc59c695bbafb9a1b437f60efa0d9f7
MD5 8c6da1902748e2b0581ca41501df41c8
BLAKE2b-256 8be98cc292936ee85a100a2d0743e4a0a969a775bddbbb296dbdefc99928ac18

See more details on using hashes here.

File details

Details for the file openvino-2026.2.0-21903-cp314-cp314t-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for openvino-2026.2.0-21903-cp314-cp314t-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 2994af8dca6ef425a1a3f7ce1a168494c9a30b228b6f46f100b6d95d7335c514
MD5 c599e203ff6e64079bbabf24e4850ec0
BLAKE2b-256 18df6fcd4f4fd651a821452445fc46e61ce49aecfb2f1845d336e4391951f9c8

See more details on using hashes here.

File details

Details for the file openvino-2026.2.0-21903-cp314-cp314-win_amd64.whl.

File metadata

File hashes

Hashes for openvino-2026.2.0-21903-cp314-cp314-win_amd64.whl
Algorithm Hash digest
SHA256 5319d06b9e98dc00d5c164a68dd832e9f72a1091a715175d3d335d951a9e5aa6
MD5 7b4452c9aafe10b36db0779dfe35939b
BLAKE2b-256 c315b83574fe3a12f64f0917bc6ed1e66571a450cda3c01ed6f14f46243a6490

See more details on using hashes here.

File details

Details for the file openvino-2026.2.0-21903-cp314-cp314-manylinux_2_35_aarch64.whl.

File metadata

File hashes

Hashes for openvino-2026.2.0-21903-cp314-cp314-manylinux_2_35_aarch64.whl
Algorithm Hash digest
SHA256 930f500c19c7bd866b6ace9d2ae2a171fdabb8eb5c1219252a15c97dd98ecf92
MD5 8206bb7e206daf7a9d2d5ec85d8807e1
BLAKE2b-256 1a983a0985259739f72b755f73380fe07c704560d6064ada08bc0393a2842169

See more details on using hashes here.

File details

Details for the file openvino-2026.2.0-21903-cp314-cp314-manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for openvino-2026.2.0-21903-cp314-cp314-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 e822fded364c4935b3d852fb07c01c75c01a3e1adfa4c173cc9abee8c3c13695
MD5 8bee4e48bdd4cb3b195decb3e1fe8bf9
BLAKE2b-256 a652271f128e817e666920ffc759549f5042b8b2ac9fec48248ed18e3d434c27

See more details on using hashes here.

File details

Details for the file openvino-2026.2.0-21903-cp314-cp314-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for openvino-2026.2.0-21903-cp314-cp314-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 3d92721402e1ee00e232930e630fe96d2b5ca7af300ad8b5e6b8963b61b27c19
MD5 df19494e0dde7f45a278dfc0bb7c7a60
BLAKE2b-256 7ba45bb947c3669a5e01d015dd91437f12a61e56c387960d6fc3846434150613

See more details on using hashes here.

File details

Details for the file openvino-2026.2.0-21903-cp313-cp313-win_amd64.whl.

File metadata

File hashes

Hashes for openvino-2026.2.0-21903-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 1524d9f1b781acf87912169958d6691c2cc4fa37510d176ef34926da05c529bd
MD5 18fcd46fcbd0c7e54b15dd331da55414
BLAKE2b-256 34012f63c58f2655845bbbb3d8fd7eff37f43bbe1837621f01d44572b20ab9f9

See more details on using hashes here.

File details

Details for the file openvino-2026.2.0-21903-cp313-cp313-manylinux_2_35_aarch64.whl.

File metadata

File hashes

Hashes for openvino-2026.2.0-21903-cp313-cp313-manylinux_2_35_aarch64.whl
Algorithm Hash digest
SHA256 c5eed7a4c886a161e36fb8f08c1e9500abd5fa7c6e6fce61dcd1c3548fffd460
MD5 5426ca547386ccc064cc65f36a9da0ee
BLAKE2b-256 9a954c652551ca08ac9f9534709b5b8dec5842ff8636e1f1f001389d65bca760

See more details on using hashes here.

File details

Details for the file openvino-2026.2.0-21903-cp313-cp313-manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for openvino-2026.2.0-21903-cp313-cp313-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 0de579de9fa467a3fbe02cf40bef46cb6aa1c6065256b29707c355b7c51385e8
MD5 c155d1aa4bb361fd7526c184c74bcc1c
BLAKE2b-256 22a698ee692cfb10c27a7c624852ba9e2a02035427416ff266bcbe08f24c5f6e

See more details on using hashes here.

File details

Details for the file openvino-2026.2.0-21903-cp313-cp313-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for openvino-2026.2.0-21903-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 96acb618bf371312d23f2faf17794d316700fcb463011e574e2fedb434d003c3
MD5 b526d0ca17115dcc856903184f433191
BLAKE2b-256 c4302b046a34e5d909077996251d0b645e4886f1b5f4d751c88820529a1a6921

See more details on using hashes here.

File details

Details for the file openvino-2026.2.0-21903-cp312-cp312-win_amd64.whl.

File metadata

File hashes

Hashes for openvino-2026.2.0-21903-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 fd9ba2eae04f76ea7266a461aa35b4e8bfd5408d732de96e88060ba9700792e0
MD5 20626233018e40492f37c48afd8d1bab
BLAKE2b-256 634f80400a0b506acf913ceeb1dccd7b7fd4424828feeea7d958f2d1577b88da

See more details on using hashes here.

File details

Details for the file openvino-2026.2.0-21903-cp312-cp312-manylinux_2_35_aarch64.whl.

File metadata

File hashes

Hashes for openvino-2026.2.0-21903-cp312-cp312-manylinux_2_35_aarch64.whl
Algorithm Hash digest
SHA256 57de704e6164902fb749f83674de7a441b45addeff22e9333f7252d782130569
MD5 5a94e8d61dfda85a629d2a32b479532f
BLAKE2b-256 4b35bf0f472ded1fd2463c78e6f21c9f70a36e709750aec89a578f9c7d66d5ee

See more details on using hashes here.

File details

Details for the file openvino-2026.2.0-21903-cp312-cp312-manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for openvino-2026.2.0-21903-cp312-cp312-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 c0b35490c2b7041d4a3855563bfec1843c508d235a9a287d8e0526330878fcba
MD5 c06c7b152bc63c936a113a94b1018724
BLAKE2b-256 e279bd9fbb2e2b8a9ab629e00767aa2b7764f0d5bb8e2c57be620932cb31cd60

See more details on using hashes here.

File details

Details for the file openvino-2026.2.0-21903-cp312-cp312-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for openvino-2026.2.0-21903-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 8ecf8a16cf893f51c5d13e8e6e9cf9bda52f29e1bbc0c24c8656696e1eae124a
MD5 ec65f478cc94d7e2b4d5267ae8d98284
BLAKE2b-256 8ce54b8945f9cdef4273a608b013cf822edcc263e8560918c9776f9476f5f1b2

See more details on using hashes here.

File details

Details for the file openvino-2026.2.0-21903-cp311-cp311-win_amd64.whl.

File metadata

File hashes

Hashes for openvino-2026.2.0-21903-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 851ca919200dc08d7898876f3947f4ea8ff8f04e9e8c1a31b87a8285c38eabcc
MD5 effa3dedc60a01d707f9f11a8176f62f
BLAKE2b-256 463af35fc85c5c04bef1e379795b57ee381712f32e3b86e694842263975ce012

See more details on using hashes here.

File details

Details for the file openvino-2026.2.0-21903-cp311-cp311-manylinux_2_35_aarch64.whl.

File metadata

File hashes

Hashes for openvino-2026.2.0-21903-cp311-cp311-manylinux_2_35_aarch64.whl
Algorithm Hash digest
SHA256 41e6318ffebf1b951e5baa62143f7036b4b0f758f1c58bf92b6040c18db842b6
MD5 a649f22d25ed45119164858788e0591a
BLAKE2b-256 93aa46018177bac4e43a0b26d429bc694ae69bdef1788a066890166727639fed

See more details on using hashes here.

File details

Details for the file openvino-2026.2.0-21903-cp311-cp311-manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for openvino-2026.2.0-21903-cp311-cp311-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 90adabc9a46aaa5c052e8ac2bd10a017ff361ef5f68647d02f4ab8a5e54610e7
MD5 256c1c2b8b9b84b6a555a0bca80d5283
BLAKE2b-256 1935b3a6b418e0fc496efb6d654b381d7da4b5b67f710630dcbea75609479f25

See more details on using hashes here.

File details

Details for the file openvino-2026.2.0-21903-cp311-cp311-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for openvino-2026.2.0-21903-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 42040b6e687071fbdac27c48763ae2c891bb9c59d4224af56830704acbf7bf40
MD5 8893c5d36cd432a008ee17fb97b74e5b
BLAKE2b-256 562107221cab5ea06e03e2c1e38ef6cd4b269a1b7cd8c46526b332555b19e2c3

See more details on using hashes here.

File details

Details for the file openvino-2026.2.0-21903-cp310-cp310-win_amd64.whl.

File metadata

File hashes

Hashes for openvino-2026.2.0-21903-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 d2fc1635f7eb3e5b0125cec82004b77c9046c16aef577bb939784e885921f55d
MD5 4f01da2c7cdc62baca6a9b6ab3451366
BLAKE2b-256 a73f22860979645beafb8208937ea0bb888dac4f856648badf9e98ef65d0d18f

See more details on using hashes here.

File details

Details for the file openvino-2026.2.0-21903-cp310-cp310-manylinux_2_35_aarch64.whl.

File metadata

File hashes

Hashes for openvino-2026.2.0-21903-cp310-cp310-manylinux_2_35_aarch64.whl
Algorithm Hash digest
SHA256 0a7d35818283a4ace874bc73f53fc651b68e2b383f8ccbaae52d9d24c1870ccd
MD5 1a545fb0fc3f1947d5a844ad273b81f6
BLAKE2b-256 a6d4935347c6c06c8b81f3b5f943d2c1dab6cc67aec3be3994dcce9cf0b18f0a

See more details on using hashes here.

File details

Details for the file openvino-2026.2.0-21903-cp310-cp310-manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for openvino-2026.2.0-21903-cp310-cp310-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 e241ced7a394e74ae5a0cfaa930cb736856a04cfd19d8f909e7654ae290a4f86
MD5 8063a6270816e09e5c75b50749f9eb70
BLAKE2b-256 1626af3da452ad40cbc2307204f230249d38a879d4e0853722fe99565b6b4ab3

See more details on using hashes here.

File details

Details for the file openvino-2026.2.0-21903-cp310-cp310-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for openvino-2026.2.0-21903-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 72197cfeb11d43316453c5ef92cec2e4ebca2ca9f2456907ae5919a48c1895cd
MD5 befb8681a49be7832897b7e8697020d3
BLAKE2b-256 7d3d9af54a22107b86b3b3669eb760fe3f2843468d90eb8d32e8927b2d5d4b35

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