You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Note: The OpenVINO backend is not yet supported with the current OpenVINO release packages. It is recommended to build from source. The instructions for using OpenVINO release packages will be added soon.
61
+
62
+
### Build OpenVINO from Release Packages
63
+
64
+
1. Download the OpenVINO release package from [here](https://docs.openvino.ai/2025/get-started/install-openvino.html). Make sure to select your configuration and click on **OpenVINO Archives** under the distribution section to download the appropriate archive for your platform
65
+
66
+
2. Extract the release package from the archive and set the environment variables
67
+
68
+
#### Linux
69
+
```bash
70
+
tar -zxf openvino_toolkit_<your_release_configuration>.tgz
71
+
cd openvino_toolkit_<your_release_configuration>
72
+
source setupvars.sh
73
+
```
74
+
75
+
#### Windows
76
+
```bash
77
+
tar -xf openvino_toolkit_<your_release_configuration>.zip
78
+
cd openvino_toolkit_<your_release_configuration>
79
+
setupvars.bat
80
+
```
81
+
60
82
For more information about OpenVINO build, refer to the [OpenVINO Build Instructions](https://github.com/openvinotoolkit/openvino/blob/master/docs/dev/build_linux.md).
0 commit comments