Getting started improvements (#10948)
This commit is contained in:
parent
6cf81ad6a3
commit
994b06b744
|
|
@ -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
|
||||
|
||||
|
|
|
|||
|
|
@ -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``.
|
||||
|
|
|
|||
|
|
@ -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``.
|
||||
|
|
|
|||
|
|
@ -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:
|
||||
|
||||
|
|
|
|||
|
|
@ -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
|
||||
|
|
|
|||
|
|
@ -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
|
||||
|
||||
|
|
|
|||
|
|
@ -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™ Inference Engine directories:
|
||||
`<OV>` refers to the following default OpenVINO™ 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™ 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
|
||||
|
||||
|
|
|
|||
Loading…
Reference in New Issue