From 3adb6d4cd2f03575bc977a83696e54161e79be37 Mon Sep 17 00:00:00 2001 From: Anastasia Kuporosova Date: Thu, 3 Aug 2023 11:46:34 +0200 Subject: [PATCH] [DOCS] Update PYTHONPATH in docs (#18961) --- docs/dev/build_linux.md | 2 +- docs/dev/build_windows.md | 4 ++-- src/bindings/python/docs/test_examples.md | 2 +- 3 files changed, 4 insertions(+), 4 deletions(-) diff --git a/docs/dev/build_linux.md b/docs/dev/build_linux.md index 1db2fc62939..dc617ed433c 100644 --- a/docs/dev/build_linux.md +++ b/docs/dev/build_linux.md @@ -84,7 +84,7 @@ You can use the following additional build options: ``` 4. After the build process finishes, export the newly built Python libraries to the user environment variables: ``` - export PYTHONPATH=PYTHONPATH:/bin/intel64/Release/python_api/python3.7 + export PYTHONPATH=PYTHONPATH:/bin/intel64/Release/python export LD_LIBRARY_PATH=LD_LIBRARY_PATH:/bin/intel64/Release ``` or install the wheel with pip: diff --git a/docs/dev/build_windows.md b/docs/dev/build_windows.md index 127c6efe17d..bc555ee1a0a 100644 --- a/docs/dev/build_windows.md +++ b/docs/dev/build_windows.md @@ -81,8 +81,8 @@ Supported configurations: ``` 4. After the build process finishes, export the newly built Python libraries to the user environment variables: ``` - set PYTHONPATH=/bin//Release/python_api/python3.11;%PYTHONPATH% - set OPENVINO_LIB_PATH=/bin//Release;%OPENVINO_LIB_PATH% + set PYTHONPATH=/bin//Release/python;%PYTHONPATH% + set OPENVINO_LIB_PATHS=/bin//Release;%OPENVINO_LIB_PATH% ``` or install the wheel with pip: ``` diff --git a/src/bindings/python/docs/test_examples.md b/src/bindings/python/docs/test_examples.md index ecd5cf0902d..5855f110fa2 100644 --- a/src/bindings/python/docs/test_examples.md +++ b/src/bindings/python/docs/test_examples.md @@ -10,7 +10,7 @@ python -m pip install -r openvino/src/bindings/python/requirements_test.txt Make sure that Python libraries are added to the user environment variables: ``` -export PYTHONPATH=PYTHONPATH:/bin/intel64/Release/python_api/python3.7 +export PYTHONPATH=PYTHONPATH:/bin/intel64/Release/python ``` ## Run OpenVINO™ Python API tests *For simplicity, all of these commands require to navigate to the [main Python API folder](./../) first:*