Skip to content

Commit

Permalink
Fixed more indentations
Browse files Browse the repository at this point in the history
  • Loading branch information
ilya-lavrenov committed Mar 22, 2022
1 parent 8dce647 commit c572e94
Show file tree
Hide file tree
Showing 2 changed files with 48 additions and 45 deletions.
79 changes: 41 additions & 38 deletions docs/OV_Runtime_UG/deployment/deployment-manager-tool.md
Original file line number Diff line number Diff line change
Expand Up @@ -38,28 +38,29 @@ There are two ways to create a deployment package that includes inference-relate
Interactive mode provides a user-friendly command-line interface that will guide you through the process with text prompts.

1. To launch the Deployment Manager in interactive mode, open a new terminal window, go to the Deployment Manager tool directory and run the tool script without parameters:
@sphinxdirective

.. tab:: Linux
@sphinxdirective

.. code-block:: sh
.. tab:: Linux

cd <INSTALL_DIR>/tools/deployment_manager
./deployment_manager.py
.. code-block:: sh

.. tab:: Windows
cd <INSTALL_DIR>/tools/deployment_manager
./deployment_manager.py

.. code-block:: bat
.. tab:: Windows

cd <INSTALL_DIR>\tools\deployment_manager
.\deployment_manager.py
.. code-block:: bat

.. tab:: macOS
cd <INSTALL_DIR>\tools\deployment_manager
.\deployment_manager.py

.. tab:: macOS

.. code-block:: sh
.. code-block:: sh

cd <INSTALL_DIR>/tools/deployment_manager
./deployment_manager.py
cd <INSTALL_DIR>/tools/deployment_manager
./deployment_manager.py

@endsphinxdirective

Expand Down Expand Up @@ -160,27 +161,28 @@ To deploy the OpenVINO Runtime components from the development machine to the ta
1. Copy the generated archive to the target system using your preferred method.

2. Unpack the archive into the destination directory on the target system (if your archive name is different from the default shown below, replace the `openvino_deployment_package` with the name you use).
@sphinxdirective

.. tab:: Linux
@sphinxdirective

.. code-block:: sh
.. tab:: Linux

tar xf openvino_deployment_package.tar.gz -C <destination_dir>
.. code-block:: sh

.. tab:: Windows
tar xf openvino_deployment_package.tar.gz -C <destination_dir>

.. code-block:: bat
.. tab:: Windows

Use the archiver of your choice to unzip the file.
.. code-block:: bat

.. tab:: macOS
Use the archiver of your choice to unzip the file.

.. code-block:: sh
.. tab:: macOS

tar xf openvino_deployment_package.tar.gz -C <destination_dir>
.. code-block:: sh

@endsphinxdirective
tar xf openvino_deployment_package.tar.gz -C <destination_dir>

@endsphinxdirective

The package is unpacked to the destination directory and the following files and subdirectories are created:

Expand All @@ -196,29 +198,30 @@ To deploy the OpenVINO Runtime components from the development machine to the ta
```

4. Set up the environment variables:
@sphinxdirective

.. tab:: Linux
@sphinxdirective

.. tab:: Linux

.. code-block:: sh
.. code-block:: sh

cd <destination_dir>/openvino/
source ./setupvars.sh
cd <destination_dir>/openvino/
source ./setupvars.sh

.. tab:: Windows
.. tab:: Windows

.. code-block:: bat
.. code-block:: bat

cd <destination_dir>\openvino\
.\setupvars.bat
cd <destination_dir>\openvino\
.\setupvars.bat

.. tab:: macOS
.. tab:: macOS

.. code-block:: sh
.. code-block:: sh

cd <destination_dir>/openvino/
source ./setupvars.sh
cd <destination_dir>/openvino/
source ./setupvars.sh

@endsphinxdirective
@endsphinxdirective

You have now finished the deployment of the OpenVINO Runtime components to the target system.
14 changes: 7 additions & 7 deletions docs/install_guides/installing-openvino-apt.md
Original file line number Diff line number Diff line change
Expand Up @@ -34,19 +34,19 @@ The complete list of supported hardware is available in the [Release Notes](http
2. Add the repository via the following command:
@sphinxdirective

.. tab:: Ubuntu 18
.. tab:: Ubuntu 18

.. code-block:: sh
.. code-block:: sh

echo "deb https://apt.repos.intel.com/openvino/2022 bionic main" | sudo tee /etc/apt/sources.list.d/intel-openvino-2022.list
echo "deb https://apt.repos.intel.com/openvino/2022 bionic main" | sudo tee /etc/apt/sources.list.d/intel-openvino-2022.list

.. tab:: Ubuntu 20
.. tab:: Ubuntu 20

.. code-block:: sh
.. code-block:: sh

echo "deb https://apt.repos.intel.com/openvino/2022 focal main" | sudo tee /etc/apt/sources.list.d/intel-openvino-2022.list
echo "deb https://apt.repos.intel.com/openvino/2022 focal main" | sudo tee /etc/apt/sources.list.d/intel-openvino-2022.list

@endsphinxdirective
@endsphinxdirective


3. Update the list of packages via the update command:
Expand Down

0 comments on commit c572e94

Please sign in to comment.