Fixing list in Deployment Manager Tool - for 22.2 (#13379)

A minor fix that corrects the numbered list of steps in Deploying Package on Target Systems
This commit is contained in:
Sebastian Golebiewski
2022-11-02 10:00:22 +01:00
committed by GitHub
parent 6b4fa954b7
commit 4f67a3587a

View File

@@ -165,64 +165,63 @@ To deploy the OpenVINO Runtime components from the development machine to the ta
.. tab:: Linux
.. code-block:: sh
.. code-block:: sh
tar xf openvino_deployment_package.tar.gz -C <destination_dir>
tar xf openvino_deployment_package.tar.gz -C <destination_dir>
.. tab:: Windows
.. code-block:: bat
.. code-block:: bat
Use the archiver of your choice to unzip the file.
Use the archiver of your choice to unzip the file.
.. tab:: macOS
.. code-block:: sh
.. code-block:: sh
tar xf openvino_deployment_package.tar.gz -C <destination_dir>
tar xf openvino_deployment_package.tar.gz -C <destination_dir>
@endsphinxdirective
Now, the package is extracted to the destination directory. The following files and subdirectories are created:
* `setupvars.sh` — a copy of `setupvars.sh`.
* `runtime` — contains the OpenVINO runtime binary files.
* `install_dependencies` — a snapshot of the `install_dependencies` directory from the OpenVINO installation directory.
* `<user_data>` — the directory with the user data (OpenVINO IR, model, dataset, etc.) specified while configuring the package.
Now, the package is extracted to the destination directory. The following files and subdirectories are created:
* `setupvars.sh` — a copy of `setupvars.sh`.
* `runtime` — contains the OpenVINO runtime binary files.
* `install_dependencies` — a snapshot of the `install_dependencies` directory from the OpenVINO installation directory.
* `<user_data>` — the directory with the user data (OpenVINO IR, model, dataset, etc.) specified while configuring the package.
3. On a target Linux system, to run inference on a target Intel® GPU, Intel® Movidius™ VPU, or Intel® Vision Accelerator Design with Intel® Movidius™ VPUs, install additional dependencies by running the `install_openvino_dependencies.sh` script:
```sh
cd <destination_dir>/openvino/install_dependencies
sudo -E ./install_openvino_dependencies.sh
```
```sh
cd <destination_dir>/openvino/install_dependencies
sudo -E ./install_openvino_dependencies.sh
```
4. Set up the environment variables:
@sphinxdirective
.. tab:: Linux
@sphinxdirective
.. tab:: Linux
.. code-block:: sh
cd <destination_dir>/openvino/
source ./setupvars.sh
.. tab:: Windows
.. code-block:: bat
.. tab:: Windows
.. code-block:: bat
cd <destination_dir>\openvino\
.\setupvars.bat
.. tab:: macOS
.. tab:: macOS
.. code-block:: sh
cd <destination_dir>/openvino/
source ./setupvars.sh
@endsphinxdirective
Now, you have finished the deployment of the OpenVINO Runtime components to the target system.