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 NPM 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

Verify Installation

After installation, you can verify OpenVINO is installed correctly by running:

import openvino as ov
print(ov.__version__)

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.
  • LLMWare - seamlessly build enterprise AI apps, agentic workflows, RAG pipelines, multimodal use cases, and more, using 100+ inference-ready OpenVINO-optimized SLMs.
  • 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.3.0-22451-cp314-cp314t-win_amd64.whl (76.0 MB view details)

Uploaded CPython 3.14tWindows x86-64

openvino-2026.3.0-22451-cp314-cp314t-manylinux_2_35_aarch64.whl (25.9 MB view details)

Uploaded CPython 3.14tmanylinux: glibc 2.35+ ARM64

openvino-2026.3.0-22451-cp314-cp314t-manylinux_2_28_x86_64.whl (57.5 MB view details)

Uploaded CPython 3.14tmanylinux: glibc 2.28+ x86-64

openvino-2026.3.0-22451-cp314-cp314t-macosx_11_0_arm64.whl (31.8 MB view details)

Uploaded CPython 3.14tmacOS 11.0+ ARM64

openvino-2026.3.0-22451-cp314-cp314-win_amd64.whl (75.8 MB view details)

Uploaded CPython 3.14Windows x86-64

openvino-2026.3.0-22451-cp314-cp314-manylinux_2_35_aarch64.whl (28.8 MB view details)

Uploaded CPython 3.14manylinux: glibc 2.35+ ARM64

openvino-2026.3.0-22451-cp314-cp314-manylinux_2_28_x86_64.whl (57.5 MB view details)

Uploaded CPython 3.14manylinux: glibc 2.28+ x86-64

openvino-2026.3.0-22451-cp314-cp314-macosx_11_0_arm64.whl (31.6 MB view details)

Uploaded CPython 3.14macOS 11.0+ ARM64

openvino-2026.3.0-22451-cp313-cp313-win_amd64.whl (75.8 MB view details)

Uploaded CPython 3.13Windows x86-64

openvino-2026.3.0-22451-cp313-cp313-manylinux_2_35_aarch64.whl (28.8 MB view details)

Uploaded CPython 3.13manylinux: glibc 2.35+ ARM64

openvino-2026.3.0-22451-cp313-cp313-manylinux_2_28_x86_64.whl (57.5 MB view details)

Uploaded CPython 3.13manylinux: glibc 2.28+ x86-64

openvino-2026.3.0-22451-cp313-cp313-macosx_11_0_arm64.whl (31.6 MB view details)

Uploaded CPython 3.13macOS 11.0+ ARM64

openvino-2026.3.0-22451-cp312-cp312-win_amd64.whl (75.8 MB view details)

Uploaded CPython 3.12Windows x86-64

openvino-2026.3.0-22451-cp312-cp312-manylinux_2_35_aarch64.whl (28.8 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.35+ ARM64

openvino-2026.3.0-22451-cp312-cp312-manylinux_2_28_x86_64.whl (57.5 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.28+ x86-64

openvino-2026.3.0-22451-cp312-cp312-macosx_11_0_arm64.whl (31.6 MB view details)

Uploaded CPython 3.12macOS 11.0+ ARM64

openvino-2026.3.0-22451-cp311-cp311-win_amd64.whl (75.8 MB view details)

Uploaded CPython 3.11Windows x86-64

openvino-2026.3.0-22451-cp311-cp311-manylinux_2_35_aarch64.whl (28.8 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.35+ ARM64

openvino-2026.3.0-22451-cp311-cp311-manylinux_2_28_x86_64.whl (57.5 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.28+ x86-64

openvino-2026.3.0-22451-cp311-cp311-macosx_11_0_arm64.whl (31.6 MB view details)

Uploaded CPython 3.11macOS 11.0+ ARM64

openvino-2026.3.0-22451-cp310-cp310-win_amd64.whl (75.8 MB view details)

Uploaded CPython 3.10Windows x86-64

openvino-2026.3.0-22451-cp310-cp310-manylinux_2_35_aarch64.whl (28.8 MB view details)

Uploaded CPython 3.10manylinux: glibc 2.35+ ARM64

openvino-2026.3.0-22451-cp310-cp310-manylinux_2_28_x86_64.whl (57.5 MB view details)

Uploaded CPython 3.10manylinux: glibc 2.28+ x86-64

openvino-2026.3.0-22451-cp310-cp310-macosx_11_0_arm64.whl (31.6 MB view details)

Uploaded CPython 3.10macOS 11.0+ ARM64

File details

Details for the file openvino-2026.3.0-22451-cp314-cp314t-win_amd64.whl.

File metadata

File hashes

Hashes for openvino-2026.3.0-22451-cp314-cp314t-win_amd64.whl
Algorithm Hash digest
SHA256 17581c5acbdaf9bf503cd21d5ad852df7e547073ad7a529661b19f40ab3c8db6
MD5 f8e162f906492450c625fb384772c704
BLAKE2b-256 dcca927354fa957dd0e8c8f53401dcd1239c4cd50d95a26ff5da3bc4b502f4dc

See more details on using hashes here.

File details

Details for the file openvino-2026.3.0-22451-cp314-cp314t-manylinux_2_35_aarch64.whl.

File metadata

File hashes

Hashes for openvino-2026.3.0-22451-cp314-cp314t-manylinux_2_35_aarch64.whl
Algorithm Hash digest
SHA256 d1ee0ecb6abfbe30b723ed6d97d7d55bc5b80b6a3fb8149fd4c97f4c45ef7e4f
MD5 b080cd16c4358eaad427c7aef74f6092
BLAKE2b-256 7b33b8c8fdf461a595b6d4f817224c5edd217494ed0013227513ce4804d3dbf4

See more details on using hashes here.

File details

Details for the file openvino-2026.3.0-22451-cp314-cp314t-manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for openvino-2026.3.0-22451-cp314-cp314t-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 65f34103c28107e830e1fb70cb9c62afdb31cfde4f8b6056c942761796b1d4fe
MD5 39070ee30b56cfd592c546a31b22e34b
BLAKE2b-256 f03c40c0bbd5c57fc0b5c0c41f9e6f0ec722f231ff25c37d20240d2baf446409

See more details on using hashes here.

File details

Details for the file openvino-2026.3.0-22451-cp314-cp314t-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for openvino-2026.3.0-22451-cp314-cp314t-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 1bfce31f1f9267e2c5189b6f4a55aa747917cfe39a2e874839974ff9b7247ff4
MD5 b551d2687e1a7436121de70a1a5532bb
BLAKE2b-256 3de089565eb119e20fa901305e7da20713a0f6f5aec809ddac1ef669c2785f66

See more details on using hashes here.

File details

Details for the file openvino-2026.3.0-22451-cp314-cp314-win_amd64.whl.

File metadata

File hashes

Hashes for openvino-2026.3.0-22451-cp314-cp314-win_amd64.whl
Algorithm Hash digest
SHA256 07a8c1cb32e3f7942aab4a0c48404b591e63c89813906c7bc5b001f94bed447c
MD5 1da7c5457c073dc41d267806ba42b551
BLAKE2b-256 60cbed637225c7373d9a4267e7fa7252c1f3767fbc9853a906d78068a279b73a

See more details on using hashes here.

File details

Details for the file openvino-2026.3.0-22451-cp314-cp314-manylinux_2_35_aarch64.whl.

File metadata

File hashes

Hashes for openvino-2026.3.0-22451-cp314-cp314-manylinux_2_35_aarch64.whl
Algorithm Hash digest
SHA256 875bb9df4bc694a86541c8598f60a6c797a29d20daf493681db9506eee6fe04f
MD5 28b7c9b5b05bd7f8b33cabec7472188d
BLAKE2b-256 f66de2c7693ebfc6b5833b0065fc52359b0f63e5004f8e49c31375be4b13445e

See more details on using hashes here.

File details

Details for the file openvino-2026.3.0-22451-cp314-cp314-manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for openvino-2026.3.0-22451-cp314-cp314-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 81a64aebd1a80da93bc9413b3ba9c93846c7cac57161cd4d7b287b354d77ad19
MD5 248c9c6377762b0a3a698b29fb14fba1
BLAKE2b-256 d797fdace942843da232ea06a5a67cc3a70d292873657dc933408fdb9bb796a8

See more details on using hashes here.

File details

Details for the file openvino-2026.3.0-22451-cp314-cp314-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for openvino-2026.3.0-22451-cp314-cp314-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 30234fafbec63f9306587511132024729d0f5f7e68d900c5df37efdf759b1384
MD5 7b21cba14ecc61d20f133524d8d373b2
BLAKE2b-256 f894c7ca8d625dff92fd90bc58a508d578c286973ea9b5789b1ad7a808aaee02

See more details on using hashes here.

File details

Details for the file openvino-2026.3.0-22451-cp313-cp313-win_amd64.whl.

File metadata

File hashes

Hashes for openvino-2026.3.0-22451-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 1c41f2d1072d600c260741b350aaf4a09d53f821a9a8fc8989bdc79a46b50a2c
MD5 5a1a0bc5ebd10bc2c14e0dbdbebf6928
BLAKE2b-256 48f8f71508784562a3d427f52f59d74a6364d559e6e82bb112cab5d6a6a677bb

See more details on using hashes here.

File details

Details for the file openvino-2026.3.0-22451-cp313-cp313-manylinux_2_35_aarch64.whl.

File metadata

File hashes

Hashes for openvino-2026.3.0-22451-cp313-cp313-manylinux_2_35_aarch64.whl
Algorithm Hash digest
SHA256 0b071a4e2f731ab29bb9a08bab804c326cc4893283274c352ca56fccafa44749
MD5 e56ee92fab3516e80ab4da26598fbd90
BLAKE2b-256 806119ac3641dcfcaee5bf9ada945579b3ab69701750e5270346633c56fdf876

See more details on using hashes here.

File details

Details for the file openvino-2026.3.0-22451-cp313-cp313-manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for openvino-2026.3.0-22451-cp313-cp313-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 b7d09f20f009b9167a863f615a2b27400ce025bda8086cc72a2eb6ac3bf1d2af
MD5 6f8f32ea77802acbcaf00239a0f1ba3e
BLAKE2b-256 8cd369e7083339f32621359f0bce2be3a7454db3c9a71fa7492f0a0941c00037

See more details on using hashes here.

File details

Details for the file openvino-2026.3.0-22451-cp313-cp313-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for openvino-2026.3.0-22451-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 5e1d3dc569cc1a81f4fd004ecbfdbdda0b07996af1bf87228b9f186e8497bac1
MD5 e88a7d688707f0f2746ea6262f69f839
BLAKE2b-256 b7dd371187173998ca980b7a53a29cf48fede4310cedd77e27a64e334b048ea2

See more details on using hashes here.

File details

Details for the file openvino-2026.3.0-22451-cp312-cp312-win_amd64.whl.

File metadata

File hashes

Hashes for openvino-2026.3.0-22451-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 865d2e7e947e544d67117cf79dc160241584ce2138dd5a878e91053ba4f50bf0
MD5 95a026718c9a5c4121419751bb707c58
BLAKE2b-256 59c00321a5bc8179b589a6f9fe401d72ec9e95912cdf62dec3a2e7b6f9f4d807

See more details on using hashes here.

File details

Details for the file openvino-2026.3.0-22451-cp312-cp312-manylinux_2_35_aarch64.whl.

File metadata

File hashes

Hashes for openvino-2026.3.0-22451-cp312-cp312-manylinux_2_35_aarch64.whl
Algorithm Hash digest
SHA256 70cd11e4b14bde48842b611630dc5b141fbfc235ff863640e08463b86a7816de
MD5 2a01f46dee0da953c85771850231384f
BLAKE2b-256 4b8ba726bd2e1e671d1d3aa06def11c24f8c6dbffb076b5d1d29635ffdd69fb7

See more details on using hashes here.

File details

Details for the file openvino-2026.3.0-22451-cp312-cp312-manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for openvino-2026.3.0-22451-cp312-cp312-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 a6887adfddf18837e6ed8230c837702d878db83b50b96c5759f8484be495f696
MD5 922eeb02e0bdbba0c910fdf4ec1866d2
BLAKE2b-256 fa3ce5eb8b5e52877251d2e98e91781b265588e10cc2ddf82265285ef808f20f

See more details on using hashes here.

File details

Details for the file openvino-2026.3.0-22451-cp312-cp312-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for openvino-2026.3.0-22451-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 1e9a19dce2390bec6d9fa61de94cdc9d78c64bc6bcab799d53948ff0bf2a534b
MD5 7b67fc888a9f08550dc181db7f36c442
BLAKE2b-256 5daa80fff09a5559800b79f73e3f56ec1597c80dabdca95b7cce7d07a7615ca8

See more details on using hashes here.

File details

Details for the file openvino-2026.3.0-22451-cp311-cp311-win_amd64.whl.

File metadata

File hashes

Hashes for openvino-2026.3.0-22451-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 7b688e38cc129cc268253c17d29a70d57e6e3ef8fb477a211294d1506440da15
MD5 70aed87eddc4d9169391d1bfb1a788e3
BLAKE2b-256 03f84970bc51a626c07c4d09a2c9395c13e99dfadca05b2c037fd612927f913a

See more details on using hashes here.

File details

Details for the file openvino-2026.3.0-22451-cp311-cp311-manylinux_2_35_aarch64.whl.

File metadata

File hashes

Hashes for openvino-2026.3.0-22451-cp311-cp311-manylinux_2_35_aarch64.whl
Algorithm Hash digest
SHA256 e13cfe5fad386d615caa55592dc48be31099506eafea2cdb6dda06f2455bd248
MD5 9d7d48a36f92c7bfbae42c8674844aef
BLAKE2b-256 1f5b6cb9709ced1c2f0a89886e70980278363b1240b50ece7cecf9021342761e

See more details on using hashes here.

File details

Details for the file openvino-2026.3.0-22451-cp311-cp311-manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for openvino-2026.3.0-22451-cp311-cp311-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 93e111164ccfd5c801edcfc3437683210837463bf57a2bd0518b940598664c2c
MD5 cc0102bbee59739ec59fbb38ff11f585
BLAKE2b-256 b98eb162407883ad51958d481c2af29d59e694caf4d8216b0c409c59294fd1aa

See more details on using hashes here.

File details

Details for the file openvino-2026.3.0-22451-cp311-cp311-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for openvino-2026.3.0-22451-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 6b883cda2ac9dc366881f4c62f039f880c2e6d5e3254a6621d0ba338561ed445
MD5 40876182eb0d7d4c3e388b012dde176c
BLAKE2b-256 52258236b2d5ab10805d3603ec50bb1dbd7d4d6fad9bf1531c98c031f5202cb2

See more details on using hashes here.

File details

Details for the file openvino-2026.3.0-22451-cp310-cp310-win_amd64.whl.

File metadata

File hashes

Hashes for openvino-2026.3.0-22451-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 697a7b349eba363553745ee4987f6bc9eae1063f2f56a9abb46a3c06506901b0
MD5 d6798f8c8fc50853459e605277c06b64
BLAKE2b-256 ba81d7d7217c8a6d1f57dac3ff6d45a914bdf9ceb29fe84591115c38ae7c0982

See more details on using hashes here.

File details

Details for the file openvino-2026.3.0-22451-cp310-cp310-manylinux_2_35_aarch64.whl.

File metadata

File hashes

Hashes for openvino-2026.3.0-22451-cp310-cp310-manylinux_2_35_aarch64.whl
Algorithm Hash digest
SHA256 5caa09e142a4c167a2662c1b80230e2879beb9a58dace0ae831d9225fb4a8c0a
MD5 b6f3e5b7460fb160dab3a53ab5456652
BLAKE2b-256 a0d68c6279c3894bfa0897807b3f2a4393ae72bfec7d1b6a0d416f0ef2eaffb6

See more details on using hashes here.

File details

Details for the file openvino-2026.3.0-22451-cp310-cp310-manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for openvino-2026.3.0-22451-cp310-cp310-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 0d57ed8cd04d6e4991e634afe4f1f89b42e8967fe856c50e0fd06fd2107ac37d
MD5 f198b340b56e38ef9fced6336e88c02e
BLAKE2b-256 e0e00927427c7e1ae724bdc3c8e1908bc0f06fd019c20d3100a30627a1bf6ebb

See more details on using hashes here.

File details

Details for the file openvino-2026.3.0-22451-cp310-cp310-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for openvino-2026.3.0-22451-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 82b9d5776cca23331dc342876b68f1b123d4245e75857f1b8cb6f871f45bd95b
MD5 19c6a0b7c6c91d6710a33d007f3567b1
BLAKE2b-256 45e07de255a81458b7336e5545d691e68910da3b5a5d24c0feb14fdb51db06d3

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