Skip to content

Commit

Permalink
Getting started improvements (#10948)
Browse files Browse the repository at this point in the history
  • Loading branch information
ilya-lavrenov authored Mar 15, 2022
1 parent 6cf81ad commit 994b06b
Show file tree
Hide file tree
Showing 7 changed files with 32 additions and 25 deletions.
31 changes: 18 additions & 13 deletions docs/install_guides/installing-openvino-apt.md
Original file line number Diff line number Diff line change
Expand Up @@ -30,29 +30,34 @@ The complete list of supported hardware is available in the [Release Notes](http
sudo apt-key add GPG-PUB-KEY-INTEL-SW-PRODUCTS.PUB
```
> **NOTE**: You might need to install GnuPG: `sudo apt-get install gnupg`

2. Add the repository via the following command:
@sphinxdirective

* On Ubuntu 18
```sh
echo "deb https://apt.repos.intel.com/openvino/2022 bionic main" | sudo tee /etc/apt/sources.list.d/intel-openvino-2022.list
```

* On Ubuntu 20
```sh
echo "deb https://apt.repos.intel.com/openvino/2022 focal main" | sudo tee /etc/apt/sources.list.d/intel-openvino-2022.list
```
.. tab:: Ubuntu 18

.. 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

.. tab:: Ubuntu 20

.. 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

@endsphinxdirective

3. Update the list of packages via the update command:
```sh
sudo apt update
```

4. Verify that the APT repository is properly set up. Run the apt-cache command to see a list of all available OpenVINO packages and components:
```sh
apt-cache search openvino
```


### Step 2: Install OpenVINO Runtime Using the APT Package Manager

Expand Down Expand Up @@ -106,7 +111,7 @@ sudo apt autoremove openvino-<VERSION>.<UPDATE>.<PATCH>

### Step 3 (Optional): Install OpenCV from APT

OpenCV is necessary to run C++ demos from Open Model Zoo. Some C++ samples and demos also use OpenCV as a dependency. OpenVINO provides a package to install OpenCV from APT:
OpenCV is necessary to run C++ demos from Open Model Zoo. Some OpenVINO samples can also extend their capabilities when compiled with OpenCV as a dependency. OpenVINO provides a package to install OpenCV from APT:

#### To Install the Latest Version of OpenCV

Expand Down
2 changes: 1 addition & 1 deletion docs/install_guides/installing-openvino-linux.md
Original file line number Diff line number Diff line change
Expand Up @@ -139,7 +139,7 @@ The environment variables are set. Next, you can download some additional tools.

.. dropdown:: OpenCV

OpenCV is necessary to run demos from Open Model Zoo (OMZ). Some OpenVINO samples and demos also use OpenCV as a dependency. The Intel® Distribution of OpenVINO™ provides a script to install OpenCV: ``<INSTALL_DIR>/extras/scripts/download_opencv.sh``.
OpenCV is necessary to run demos from Open Model Zoo (OMZ). Some OpenVINO samples can also extend their capabilities when compiled with OpenCV as a dependency. The Intel® Distribution of OpenVINO™ provides a script to install OpenCV: ``<INSTALL_DIR>/extras/scripts/download_opencv.sh``.

.. note::
Make sure you have 2 prerequisites installed: ``curl`` and ``tar``.
Expand Down
2 changes: 1 addition & 1 deletion docs/install_guides/installing-openvino-macos.md
Original file line number Diff line number Diff line change
Expand Up @@ -96,7 +96,7 @@ The environment variables are set. Continue to the next section if you want to d

.. dropdown:: OpenCV

OpenCV is necessary to run demos from Open Model Zoo (OMZ). Some OpenVINO samples and demos also use OpenCV as a dependency. The Intel® Distribution of OpenVINO™ provides a script to install OpenCV: ``<INSTALL_DIR>/extras/scripts/download_opencv.sh``.
OpenCV is necessary to run demos from Open Model Zoo (OMZ). Some OpenVINO samples can also extend their capabilities when compiled with OpenCV as a dependency. The Intel® Distribution of OpenVINO™ provides a script to install OpenCV: ``<INSTALL_DIR>/extras/scripts/download_opencv.sh``.

.. note::
Make sure you have 2 prerequisites installed: ``curl`` and ``tar``.
Expand Down
8 changes: 4 additions & 4 deletions docs/install_guides/installing-openvino-overview.md
Original file line number Diff line number Diff line change
Expand Up @@ -10,20 +10,20 @@ Intel® Distribution of OpenVINO™ toolkit is a comprehensive toolkit for quick

### Decide What to Install

**If you have already finished your model development and want to deploy your applications on various devices, install OpenVINO Runtime**, which contains a set of libraries for an easy inference integration into your applications and supports heterogeneous execution across Intel® CPU and Intel® GPU hardware.
**If you have already finished your model development and want to deploy your applications on various devices, [install OpenVINO Runtime](installing-openvino-runtime.md)**, which contains a set of libraries for an easy inference integration into your applications and supports heterogeneous execution across Intel® CPU and Intel® GPU hardware.

**If you want to download, convert, optimize and tune pre-trained deep learning models**, [install OpenVINO Development Tools](installing-model-dev-tools.md), which provides the following tools:
**If you want to download model from [Open Model Zoo](../model_zoo.md), convert to [OpenVINO IR](../MO_DG/Deep_Learning_Model_Optimizer_DevGuide.md), [optimize](../optimization_guide/model_optimization_guide.md) and tune pre-trained deep learning models**, [install OpenVINO Development Tools](installing-model-dev-tools.md), which provides the following tools:

* Model Optimizer
* Post-Training Optimization Tool
* Benchmark Tool
* Accuracy Checker and Annotation Converter
* Post-Training Optimization Tool
* Model Downloader and other Open Model Zoo tools


### Choose Your Installation Method

For Python developers, you can [install OpenVINO from PyPI](installing-openvino-pip.md), which contains both OpenVINO Runtime and Development Tools and less steps.
For Python developers, you can [install OpenVINO from PyPI](installing-openvino-pip.md), which contains both OpenVINO Runtime and Development Tools and less steps.

For C++ developers, you may choose one of the following installation options to install OpenVINO Runtime on your specific operating system:

Expand Down
4 changes: 3 additions & 1 deletion docs/install_guides/installing-openvino-windows.md
Original file line number Diff line number Diff line change
Expand Up @@ -107,7 +107,7 @@ The environment variables are set. Next, you can download some additional tools.

.. dropdown:: OpenCV

OpenCV is necessary to run demos from Open Model Zoo (OMZ). Some OpenVINO samples and demos also use OpenCV as a dependency. The Intel® Distribution of OpenVINO™ provides a script to install OpenCV: ``<INSTALL_DIR>/extras/scripts/download_opencv.sh``.
OpenCV is necessary to run demos from Open Model Zoo (OMZ). Some OpenVINO samples can also extend their capabilities when compiled with OpenCV as a dependency. The Intel® Distribution of OpenVINO™ provides a script to install OpenCV: ``<INSTALL_DIR>/extras/scripts/download_opencv.sh``.

.. note::
No prerequisites are needed.
Expand All @@ -116,11 +116,13 @@ The environment variables are set. Next, you can download some additional tools.

a. GUI: right click and select ``Run with PowerShell``
b. Command prompt (CMD) console:

.. code-block:: sh

powershell <INSTALL_DIR>\extras\scripts\download_opencv.ps1

c. PowerShell console:

.. code-block:: sh

.\<INSTALL_DIR>\scripts\download_opencv.ps1
Expand Down
2 changes: 1 addition & 1 deletion docs/install_guides/installing-openvino-yum.md
Original file line number Diff line number Diff line change
Expand Up @@ -96,7 +96,7 @@ sudo yum autoremove openvino-<VERSION>.<UPDATE>.<PATCH>

### Step 3 (Optional): Install OpenCV from YUM

OpenCV is necessary to run C++ demos from Open Model Zoo. Some C++ samples and demos also use OpenCV as a dependency. OpenVINO provides a package to install OpenCV from YUM:
OpenCV is necessary to run C++ demos from Open Model Zoo. Some OpenVINO samples can also extend their capabilities when compiled with OpenCV as a dependency. OpenVINO provides a package to install OpenCV from YUM:

#### To Install the Latest Version of OpenCV

Expand Down
8 changes: 4 additions & 4 deletions docs/install_guides/movidius-setup-guide.md
Original file line number Diff line number Diff line change
Expand Up @@ -36,21 +36,21 @@ The `hddldaemon` is a system service, a binary executable that is run to manage
### Conventions Used in This Document

`<IE>` refers to the following default OpenVINO&trade; Inference Engine directories:
`<OV>` refers to the following default OpenVINO&trade; Runtime directories:
- **Linux:**
```
/opt/intel/openvino_2022/inference_engine
/opt/intel/openvino_2022/runtime
```
- **Windows:**
```
C:\Program Files (x86)\IntelSWTools\openvino\inference_engine
C:\Program Files (x86)\IntelSWTools\openvino\runtime
```

If you have installed OpenVINO&trade; in a different directory on your system, you will need to enter your unique directory path.

### Configuration File Location

`<IE>\external\hddl\config\hddl_service.config`
`<OV>\3rdparty\hddl\config\hddl_service.config`

### Service Configuration File Settings

Expand Down

0 comments on commit 994b06b

Please sign in to comment.