Skip to main content
OpenVINO

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

Documentation • Blog • Key Features • Tutorials • Integrations • Benchmarks • Generative 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.

Release files for openvino 2026.4.0

For a detailed explanation of source distributions (sdists) and built distributions (wheels), please see the package formats documentation.

Built distributions (wheels)

Table of built distributions (wheels) for openvino 2026.4.0
File
openvino-2026.4.0-22959-cp314-cp314t-win_amd64.whl CPython 3.14 CPython 3.14 free-threading Windows x86-64 Details
openvino-2026.4.0-22959-cp314-cp314t-manylinux_2_35_aarch64.whl CPython 3.14 CPython 3.14 free-threading Linux glibc 2.35+ ARM64 Details
openvino-2026.4.0-22959-cp314-cp314t-manylinux_2_28_x86_64.whl CPython 3.14 CPython 3.14 free-threading Linux glibc 2.28+ x86-64 Details
openvino-2026.4.0-22959-cp314-cp314t-macosx_11_0_arm64.whl CPython 3.14 CPython 3.14 free-threading macOS 11.0+ ARM64 Details
openvino-2026.4.0-22959-cp314-cp314-win_amd64.whl CPython 3.14 CPython 3.14 Windows x86-64 Details
openvino-2026.4.0-22959-cp314-cp314-manylinux_2_35_aarch64.whl CPython 3.14 CPython 3.14 Linux glibc 2.35+ ARM64 Details
openvino-2026.4.0-22959-cp314-cp314-manylinux_2_28_x86_64.whl CPython 3.14 CPython 3.14 Linux glibc 2.28+ x86-64 Details
openvino-2026.4.0-22959-cp314-cp314-macosx_11_0_arm64.whl CPython 3.14 CPython 3.14 macOS 11.0+ ARM64 Details
openvino-2026.4.0-22959-cp313-cp313-win_amd64.whl CPython 3.13 CPython 3.13 Windows x86-64 Details
openvino-2026.4.0-22959-cp313-cp313-manylinux_2_35_aarch64.whl CPython 3.13 CPython 3.13 Linux glibc 2.35+ ARM64 Details
openvino-2026.4.0-22959-cp313-cp313-manylinux_2_28_x86_64.whl CPython 3.13 CPython 3.13 Linux glibc 2.28+ x86-64 Details
openvino-2026.4.0-22959-cp313-cp313-macosx_11_0_arm64.whl CPython 3.13 CPython 3.13 macOS 11.0+ ARM64 Details
openvino-2026.4.0-22959-cp312-cp312-win_amd64.whl CPython 3.12 CPython 3.12 Windows x86-64 Details
openvino-2026.4.0-22959-cp312-cp312-manylinux_2_35_aarch64.whl CPython 3.12 CPython 3.12 Linux glibc 2.35+ ARM64 Details
openvino-2026.4.0-22959-cp312-cp312-manylinux_2_28_x86_64.whl CPython 3.12 CPython 3.12 Linux glibc 2.28+ x86-64 Details
openvino-2026.4.0-22959-cp312-cp312-macosx_11_0_arm64.whl CPython 3.12 CPython 3.12 macOS 11.0+ ARM64 Details
openvino-2026.4.0-22959-cp311-cp311-win_amd64.whl CPython 3.11 CPython 3.11 Windows x86-64 Details
openvino-2026.4.0-22959-cp311-cp311-manylinux_2_35_aarch64.whl CPython 3.11 CPython 3.11 Linux glibc 2.35+ ARM64 Details
openvino-2026.4.0-22959-cp311-cp311-manylinux_2_28_x86_64.whl CPython 3.11 CPython 3.11 Linux glibc 2.28+ x86-64 Details
openvino-2026.4.0-22959-cp311-cp311-macosx_11_0_arm64.whl CPython 3.11 CPython 3.11 macOS 11.0+ ARM64 Details
openvino-2026.4.0-22959-cp310-cp310-win_amd64.whl CPython 3.10 CPython 3.10 Windows x86-64 Details
openvino-2026.4.0-22959-cp310-cp310-manylinux_2_35_aarch64.whl CPython 3.10 CPython 3.10 Linux glibc 2.35+ ARM64 Details
openvino-2026.4.0-22959-cp310-cp310-manylinux_2_28_x86_64.whl CPython 3.10 CPython 3.10 Linux glibc 2.28+ x86-64 Details
openvino-2026.4.0-22959-cp310-cp310-macosx_11_0_arm64.whl CPython 3.10 CPython 3.10 macOS 11.0+ ARM64 Details

Total release size: 1.2 GB

Release files / openvino-2026.4.0-22959-cp314-cp314t-win_amd64.whl

Download URL openvino-2026.4.0-22959-cp314-cp314t-win_amd64.whl
Size 84.2 MB
Tags CPython 3.14 CPython 3.14 free-threading Windows x86-64
SHA-256 checksum
How to use checksums
8515a86ffe12b830733511d8b2848d1b7eb6a7c2bb0a69ac7e7aae518ddb2101
BLAKE2b-256 checksum
How to use checksums
2d506eba8fac1ff4fdc05da1dbe2d61964220c9eeefecf385595b3e8bd5fe05b
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/7.0.0 CPython/3.10.12

Release files / openvino-2026.4.0-22959-cp314-cp314t-manylinux_2_35_aarch64.whl

Download URL openvino-2026.4.0-22959-cp314-cp314t-manylinux_2_35_aarch64.whl
Size 27.4 MB
Tags CPython 3.14 CPython 3.14 free-threading Linux glibc 2.35+ ARM64
SHA-256 checksum
How to use checksums
6b3e9a00c1b57222c976af12f53bee79c4df0367aff7843be4b7c12d6a002fa8
BLAKE2b-256 checksum
How to use checksums
ab83f0ee3431b31f268057ffac0449014fbfd853afba040fe23aed6ddb3e721f
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/7.0.0 CPython/3.10.12

Release files / openvino-2026.4.0-22959-cp314-cp314t-manylinux_2_28_x86_64.whl

Download URL openvino-2026.4.0-22959-cp314-cp314t-manylinux_2_28_x86_64.whl
Size 59.2 MB
Tags CPython 3.14 CPython 3.14 free-threading Linux glibc 2.28+ x86-64
SHA-256 checksum
How to use checksums
b1faae0787283f94fde354453246b8ca1126fa9d52ab9496dcc43a98925f03a4
BLAKE2b-256 checksum
How to use checksums
80a34183d541bc11a33ea8a7885e5a4ccf5f26b934251b63f7f223189d09cbe1
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/7.0.0 CPython/3.10.12

Release files / openvino-2026.4.0-22959-cp314-cp314t-macosx_11_0_arm64.whl

Download URL openvino-2026.4.0-22959-cp314-cp314t-macosx_11_0_arm64.whl
Size 33.6 MB
Tags CPython 3.14 CPython 3.14 free-threading macOS 11.0+ ARM64
SHA-256 checksum
How to use checksums
97a2c9dfb8e000483467463e9354876c4b08630aae4f2e24a639388d4c4de343
BLAKE2b-256 checksum
How to use checksums
ad6c0d081a3e036e9c57552135ad9d9e3d40bc4112054709998136f6bead96a0
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/7.0.0 CPython/3.10.12

Release files / openvino-2026.4.0-22959-cp314-cp314-win_amd64.whl

Download URL openvino-2026.4.0-22959-cp314-cp314-win_amd64.whl
Size 84.0 MB
Tags CPython 3.14 Windows x86-64
SHA-256 checksum
How to use checksums
eab8a6c71210b2596765e3c9ffbdbe05c1d3b279793806e55162befa898a548f
BLAKE2b-256 checksum
How to use checksums
c582b7f7a3c88622e47647d3bb6c9f04e98a5227c4f928cc29984f4a4538f850
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/7.0.0 CPython/3.10.12

Release files / openvino-2026.4.0-22959-cp314-cp314-manylinux_2_35_aarch64.whl

Download URL openvino-2026.4.0-22959-cp314-cp314-manylinux_2_35_aarch64.whl
Size 30.3 MB
Tags CPython 3.14 Linux glibc 2.35+ ARM64
SHA-256 checksum
How to use checksums
b67541153cc2ef7181472f780a9094a096c4b75e1438f68facfe2b2b5054cdd0
BLAKE2b-256 checksum
How to use checksums
b3ff9c73e1a03e6fa79d38eeac5793c9de117fe10db4b71b81477d17ee225ea6
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/7.0.0 CPython/3.10.12

Release files / openvino-2026.4.0-22959-cp314-cp314-manylinux_2_28_x86_64.whl

Download URL openvino-2026.4.0-22959-cp314-cp314-manylinux_2_28_x86_64.whl
Size 59.1 MB
Tags CPython 3.14 Linux glibc 2.28+ x86-64
SHA-256 checksum
How to use checksums
5ac6b16b3072f4c5f20ab308db598098bcd1c346108e93f4b36d8548b95707bf
BLAKE2b-256 checksum
How to use checksums
e299a62c8957f7ef1b8a78a526abc710e7c7fdd43d2bdb3456610b3c5377c0b5
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/7.0.0 CPython/3.10.12

Release files / openvino-2026.4.0-22959-cp314-cp314-macosx_11_0_arm64.whl

Download URL openvino-2026.4.0-22959-cp314-cp314-macosx_11_0_arm64.whl
Size 33.3 MB
Tags CPython 3.14 macOS 11.0+ ARM64
SHA-256 checksum
How to use checksums
82741b9ef682ff736161fdad30e7fa4593de512ae7750b032e6a8aa3f0725252
BLAKE2b-256 checksum
How to use checksums
49ba1bbe576c6996bc1fc51c81a7f89f66fd0eb30ba10ffe086cd1683a53a4d1
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/7.0.0 CPython/3.10.12

Release files / openvino-2026.4.0-22959-cp313-cp313-win_amd64.whl

Download URL openvino-2026.4.0-22959-cp313-cp313-win_amd64.whl
Size 84.0 MB
Tags CPython 3.13 Windows x86-64
SHA-256 checksum
How to use checksums
e822141285804444ef5fa5e916f5d42e50f7fafebfbfc5d0d7c3a335de1aa5fb
BLAKE2b-256 checksum
How to use checksums
bebfa18d0a0a67b572b76445fbd2fa7a5fe955de882010eb0f316d298ca42c16
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/7.0.0 CPython/3.10.12

Release files / openvino-2026.4.0-22959-cp313-cp313-manylinux_2_35_aarch64.whl

Download URL openvino-2026.4.0-22959-cp313-cp313-manylinux_2_35_aarch64.whl
Size 30.3 MB
Tags CPython 3.13 Linux glibc 2.35+ ARM64
SHA-256 checksum
How to use checksums
7a335edb34838d9d19a4d6cd79267f0d086e40b0847373e1cee82fc96cff758f
BLAKE2b-256 checksum
How to use checksums
3161fc2344dbcd86c4b1e9b9afa98b20f9e4c1bf9a31171785d894657e5691c0
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/7.0.0 CPython/3.10.12

Release files / openvino-2026.4.0-22959-cp313-cp313-manylinux_2_28_x86_64.whl

Download URL openvino-2026.4.0-22959-cp313-cp313-manylinux_2_28_x86_64.whl
Size 59.1 MB
Tags CPython 3.13 Linux glibc 2.28+ x86-64
SHA-256 checksum
How to use checksums
186abfe5f355c33f19b50fe48340f9af0110e92fd279b7358a023fcbd225c380
BLAKE2b-256 checksum
How to use checksums
75b0692a6f0aa313791126a0d646b7c0ba88ee368c7f76d1b8c8cd50b977975a
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/7.0.0 CPython/3.10.12

Release files / openvino-2026.4.0-22959-cp313-cp313-macosx_11_0_arm64.whl

Download URL openvino-2026.4.0-22959-cp313-cp313-macosx_11_0_arm64.whl
Size 33.3 MB
Tags CPython 3.13 macOS 11.0+ ARM64
SHA-256 checksum
How to use checksums
2483df2786ab9c5b63f5f712d2aed38d6d227dc5f400dbbeb49dc2c84c2109e3
BLAKE2b-256 checksum
How to use checksums
5159f6cf3e684a31ddf4db3df645cc452b18f33edac6a4becff1c141692fab4c
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/7.0.0 CPython/3.10.12

Release files / openvino-2026.4.0-22959-cp312-cp312-win_amd64.whl

Download URL openvino-2026.4.0-22959-cp312-cp312-win_amd64.whl
Size 84.0 MB
Tags CPython 3.12 Windows x86-64
SHA-256 checksum
How to use checksums
1d64a3178e750ea35f4095dc8ee6e0492795a5cf85c0dd24593a29f8a60c209d
BLAKE2b-256 checksum
How to use checksums
62956b1a095f865cd5a02f773590a419525ee9f9fc25770901cf461dad38aa29
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/7.0.0 CPython/3.10.12

Release files / openvino-2026.4.0-22959-cp312-cp312-manylinux_2_35_aarch64.whl

Download URL openvino-2026.4.0-22959-cp312-cp312-manylinux_2_35_aarch64.whl
Size 30.3 MB
Tags CPython 3.12 Linux glibc 2.35+ ARM64
SHA-256 checksum
How to use checksums
cf2e8b12fd08588a69b11a8d2fe48c4373fb96eec28564dfc4754062c3f90439
BLAKE2b-256 checksum
How to use checksums
ca73ccfe5e280ba9a1123ee2fbc3fe60e95d9a1ad8f2ea3668d418c45b890b73
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/7.0.0 CPython/3.10.12

Release files / openvino-2026.4.0-22959-cp312-cp312-manylinux_2_28_x86_64.whl

Download URL openvino-2026.4.0-22959-cp312-cp312-manylinux_2_28_x86_64.whl
Size 59.1 MB
Tags CPython 3.12 Linux glibc 2.28+ x86-64
SHA-256 checksum
How to use checksums
75245768f656afffd49078cee55b50b9501bb6778798aec3cc30e5613a86e370
BLAKE2b-256 checksum
How to use checksums
0996106f20950f8636f23925fa9867f9b1d7d10dd20f7b0300b10f8da40fdf16
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/7.0.0 CPython/3.10.12

Release files / openvino-2026.4.0-22959-cp312-cp312-macosx_11_0_arm64.whl

Download URL openvino-2026.4.0-22959-cp312-cp312-macosx_11_0_arm64.whl
Size 33.3 MB
Tags CPython 3.12 macOS 11.0+ ARM64
SHA-256 checksum
How to use checksums
171b876d1e732b2cf1c6a47d48dc6065fe7a36abe3d2a0035c8d3be36c0d67a1
BLAKE2b-256 checksum
How to use checksums
5543e5a7fd6a13f6bc0fb389461a5a2e79b5bbaaa4388341fd040e3466890e71
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/7.0.0 CPython/3.10.12

Release files / openvino-2026.4.0-22959-cp311-cp311-win_amd64.whl

Download URL openvino-2026.4.0-22959-cp311-cp311-win_amd64.whl
Size 84.0 MB
Tags CPython 3.11 Windows x86-64
SHA-256 checksum
How to use checksums
f00130dee4046272fc734afd88b9cbc69066f37219337828e04f1a1b257b2288
BLAKE2b-256 checksum
How to use checksums
f63daaa196157eb2910b47d040244410d478dc12502a55bbc769479ca629079c
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/7.0.0 CPython/3.10.12

Release files / openvino-2026.4.0-22959-cp311-cp311-manylinux_2_35_aarch64.whl

Download URL openvino-2026.4.0-22959-cp311-cp311-manylinux_2_35_aarch64.whl
Size 30.3 MB
Tags CPython 3.11 Linux glibc 2.35+ ARM64
SHA-256 checksum
How to use checksums
8d552c6a8b0853447b291da3b2916d1b8a0e6f8bca70c8a9737d661fb5e268ca
BLAKE2b-256 checksum
How to use checksums
0ee211b4624261b33b411b20665517539cd0d560657358ac024df83be4731ab5
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/7.0.0 CPython/3.10.12

Release files / openvino-2026.4.0-22959-cp311-cp311-manylinux_2_28_x86_64.whl

Download URL openvino-2026.4.0-22959-cp311-cp311-manylinux_2_28_x86_64.whl
Size 59.1 MB
Tags CPython 3.11 Linux glibc 2.28+ x86-64
SHA-256 checksum
How to use checksums
71ee4e65a914044a510af43da16f3279c8f9dae22cbc8eac63d4a785c4a9c03f
BLAKE2b-256 checksum
How to use checksums
3f93a24476fbf4e96b034adba461d3cc8df5e62c92dcb153a07d9656f9da77aa
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/7.0.0 CPython/3.10.12

Release files / openvino-2026.4.0-22959-cp311-cp311-macosx_11_0_arm64.whl

Download URL openvino-2026.4.0-22959-cp311-cp311-macosx_11_0_arm64.whl
Size 33.3 MB
Tags CPython 3.11 macOS 11.0+ ARM64
SHA-256 checksum
How to use checksums
73f54242b6cf6fb5b6ddee27cfc3c510ddbae96125d6bdb0408aa71a473748a8
BLAKE2b-256 checksum
How to use checksums
0f07b7be179965bb0ee5e1403127e7bc88c3c993a1cfc6a64ccc779d98c20185
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/7.0.0 CPython/3.10.12

Release files / openvino-2026.4.0-22959-cp310-cp310-win_amd64.whl

Download URL openvino-2026.4.0-22959-cp310-cp310-win_amd64.whl
Size 84.0 MB
Tags CPython 3.10 Windows x86-64
SHA-256 checksum
How to use checksums
50ad382beb5331d12ae6bff975344af9470ef705602522a3f6b7e4df0428b093
BLAKE2b-256 checksum
How to use checksums
6b3df8be0e877fedca654e9b62a596eb97082f818b64bb165d3250aa620f91d4
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/7.0.0 CPython/3.10.12

Release files / openvino-2026.4.0-22959-cp310-cp310-manylinux_2_35_aarch64.whl

Download URL openvino-2026.4.0-22959-cp310-cp310-manylinux_2_35_aarch64.whl
Size 30.3 MB
Tags CPython 3.10 Linux glibc 2.35+ ARM64
SHA-256 checksum
How to use checksums
143eec6237323b440b3b499dc3e01364cb8937eac9b233fad2e2e45e189196c8
BLAKE2b-256 checksum
How to use checksums
8204af9324651ca451ec3e894f5f63f4e8883d650a13724609c78e4e8e448eda
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/7.0.0 CPython/3.10.12

Release files / openvino-2026.4.0-22959-cp310-cp310-manylinux_2_28_x86_64.whl

Download URL openvino-2026.4.0-22959-cp310-cp310-manylinux_2_28_x86_64.whl
Size 59.1 MB
Tags CPython 3.10 Linux glibc 2.28+ x86-64
SHA-256 checksum
How to use checksums
dac6cf1098dad0b4b62ea4cfad46a113f44071ffc15088c8e9806a2cb24bfcd8
BLAKE2b-256 checksum
How to use checksums
378c02ff4c96145f8c8620bf8e2f17579995f66f3ec07336e67d878f735c0712
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/7.0.0 CPython/3.10.12

Release files / openvino-2026.4.0-22959-cp310-cp310-macosx_11_0_arm64.whl

Download URL openvino-2026.4.0-22959-cp310-cp310-macosx_11_0_arm64.whl
Size 33.3 MB
Tags CPython 3.10 macOS 11.0+ ARM64
SHA-256 checksum
How to use checksums
d9f1e318aba71b1fd5397783666ae79ef4fb1aa586c48d7201e1917503c03775
BLAKE2b-256 checksum
How to use checksums
a755f5724054151669c223e6b1decbf21bd204fed0a368256e2c7ff223b9aaf7
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/7.0.0 CPython/3.10.12

Release history Release notifications | RSS feed

This release

2026.4.0 This release

24 release files

2021.2

7 release files

Anthropic, PBC Visionary sponsor Bloomberg Visionary sponsor Hudson River Trading Visionary sponsor Meta Visionary sponsor NVIDIA Visionary sponsor Microsoft Sustainability sponsor Depot Continuous Integration AWS Cloud computing and Security Sponsor Datadog Monitoring Fastly CDN Google Download Analytics Sentry Error logging StatusPage Status page