[IE Python] update python api readme (#4408)

* update python API readme.md

* Update Python API readme.md

* Update api_overview.md

* update IE Python README

* update IE Python README

* Update api_overview.md
This commit is contained in:
Alexey Lebedev 2021-03-02 21:33:25 +03:00 committed by GitHub
parent 6b4abc49a4
commit 1d5562c266
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 10 additions and 10 deletions

View File

@ -18,7 +18,7 @@ Build Inference Engine Python API alongside with the Inference Engine build.
You need to run Inference Engine build with the following flags: You need to run Inference Engine build with the following flags:
```shellscript ```shellscript
cd <IE_ROOT> cd <INSTALL_DIR>/openvino
mkdir -p build mkdir -p build
cd build cd build
cmake -DENABLE_PYTHON=ON -DPYTHON_EXECUTABLE=`which python3.6` \ cmake -DENABLE_PYTHON=ON -DPYTHON_EXECUTABLE=`which python3.6` \
@ -32,7 +32,7 @@ You need to run Inference Engine build with the following flags:
You need to run Inference Engine build with the following flags: You need to run Inference Engine build with the following flags:
```shellscript ```shellscript
cd <IE_ROOT> cd <INSTALL_DIR>/openvino
mkdir build mkdir build
cd build cd build
set PATH=C:\Program Files\Python36\Scripts;%PATH% set PATH=C:\Program Files\Python36\Scripts;%PATH%

View File

@ -8,24 +8,24 @@ This API provides a simplified interface for Inference Engine functionality that
## Supported OSes ## Supported OSes
Inference Engine Python\* API is supported on Ubuntu\* 16.04 and 18.04, CentOS\* 7.3 OSes, Raspbian\* 9, Windows\* 10 Inference Engine Python\* API is supported on Ubuntu\* 18.04 and 20.04, CentOS\* 7.3 OSes, Raspbian\* 9, Windows\* 10
and macOS\* 10.x. and macOS\* 10.x.
Supported Python* versions: Supported Python* versions:
| Operating System | Supported Python\* versions: | | Operating System | Supported Python\* versions: |
|:----- | :----- | |:----- | :----- |
| Ubuntu\* 16.04 | 2.7, 3.5, 3.6, 3.7 | | Ubuntu\* 18.04 | 3.6, 3.7 |
| Ubuntu\* 18.04 | 2.7, 3.5, 3.6, 3.7 | | Ubuntu\* 20.04 | 3.6, 3.7, 3.8 |
| Windows\* 10 | 3.5, 3.6, 3.7 | | Windows\* 10 | 3.6, 3.7, 3.8 |
| CentOS\* 7.3 | 3.4, 3.5, 3.6, 3.7 | | CentOS\* 7.3 | 3.6, 3.7 |
| macOS\* 10.x | 3.5, 3.6, 3.7 | | macOS\* 10.x | 3.6, 3.7 |
| Raspbian\* 9 | 3.5, 3.6, 3.7 | | Raspbian\* 9 | 3.6, 3.7 |
## Set Up the Environment ## Set Up the Environment
To configure the environment for the Inference Engine Python\* API, run: To configure the environment for the Inference Engine Python\* API, run:
* On Ubuntu\* 16.04 or 18.04 CentOS\* 7.4: `source <INSTALL_DIR>/bin/setupvars.sh .` * On Ubuntu\* 18.04 or 20.04: `source <INSTALL_DIR>/bin/setupvars.sh .`
* On CentOS\* 7.4: `source <INSTALL_DIR>/bin/setupvars.sh .` * On CentOS\* 7.4: `source <INSTALL_DIR>/bin/setupvars.sh .`
* On macOS\* 10.x: `source <INSTALL_DIR>/bin/setupvars.sh .` * On macOS\* 10.x: `source <INSTALL_DIR>/bin/setupvars.sh .`
* On Raspbian\* 9,: `source <INSTALL_DIR>/bin/setupvars.sh .` * On Raspbian\* 9,: `source <INSTALL_DIR>/bin/setupvars.sh .`