[DOCS] Update PYTHONPATH in docs (#18961)

This commit is contained in:
Anastasia Kuporosova 2023-08-03 11:46:34 +02:00 committed by GitHub
parent d445f9ec95
commit 3adb6d4cd2
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
3 changed files with 4 additions and 4 deletions

View File

@ -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:<openvino_repo>/bin/intel64/Release/python_api/python3.7
export PYTHONPATH=PYTHONPATH:<openvino_repo>/bin/intel64/Release/python
export LD_LIBRARY_PATH=LD_LIBRARY_PATH:<openvino_repo>/bin/intel64/Release
```
or install the wheel with pip:

View File

@ -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=<openvino_repo>/bin/<arch>/Release/python_api/python3.11;%PYTHONPATH%
set OPENVINO_LIB_PATH=<openvino_repo>/bin/<arch>/Release;%OPENVINO_LIB_PATH%
set PYTHONPATH=<openvino_repo>/bin/<arch>/Release/python;%PYTHONPATH%
set OPENVINO_LIB_PATHS=<openvino_repo>/bin/<arch>/Release;%OPENVINO_LIB_PATH%
```
or install the wheel with pip:
```

View File

@ -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:<openvino_repo>/bin/intel64/Release/python_api/python3.7
export PYTHONPATH=PYTHONPATH:<openvino_repo>/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:*