Getting started improvements (#10948)

This commit is contained in:
Ilya Lavrenov 2022-03-15 18:05:54 +03:00 committed by GitHub
parent 6cf81ad6a3
commit 994b06b744
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
7 changed files with 33 additions and 26 deletions

View File

@ -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:
* 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
```
2. Add the repository via the following command:
@sphinxdirective
.. 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
@ -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

View File

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

View File

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

View File

@ -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:

View File

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

View File

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

View File

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