Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Title: Update build instructions for Windows (Enable Wheel Flag) #28256

Open
wants to merge 2 commits into
base: master
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions docs/dev/build_windows.md
Original file line number Diff line number Diff line change
Expand Up @@ -51,11 +51,11 @@ Supported configurations:
### Additional Build Options

- To build the OpenVINO Runtime Python API:
1. Enable the `-DENABLE_PYTHON=ON` in the CMake (Step #3) option above. To specify an exact Python version, use the following options (requires cmake 3.16 and higher):
1. Enable the `-DENABLE_PYTHON=ON`and `-DENABLE_WHEEL=ON` options in the CMake (Step #3) option above. To specify an exact Python version, use the following options (requires cmake 3.16 and higher):
```sh
-DPython3_EXECUTABLE="C:\Program Files\Python11\python.exe"
```
2. To build a wheel package (.whl), enable the `-DENABLE_WHEEL=ON` option in the CMake step above (Step 4), and install requirements:
2. Install the required dependencies for building the wheel package (.whl):
```sh
pip install -r <openvino source tree>\src\bindings\python\wheel\requirements-dev.txt
```
Expand Down
Loading