Skip to content

Commit dd12f97

Browse files
committed
Added instructions to install OpenVINO from release packages
1 parent 45c01fb commit dd12f97

File tree

1 file changed

+24
-2
lines changed

1 file changed

+24
-2
lines changed

backends/openvino/README.md

Lines changed: 24 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,9 @@ executorch
4040

4141
### Prerequisites
4242

43-
Before you begin, ensure you have openvino installed and configured on your system:
43+
Before you begin, ensure you have openvino installed and configured on your system
44+
45+
### Build OpenVINO from Source
4446

4547
```bash
4648
git clone https://github.com/openvinotoolkit/openvino.git
@@ -56,7 +58,27 @@ cmake --install build --prefix <your_preferred_install_location>
5658
cd <your_preferred_install_location>
5759
source setupvars.sh
5860
```
59-
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+
6082
For more information about OpenVINO build, refer to the [OpenVINO Build Instructions](https://github.com/openvinotoolkit/openvino/blob/master/docs/dev/build_linux.md).
6183

6284
### Setup

0 commit comments

Comments
 (0)