* update step 3 * fix formatting * fix formatting * fix formatting * test formatting * change code to use sphinx directives * fix formatting * test formatting * test formatting * rewording * test formatting * test formatting * test formatting * move content to troubleshooting guide * fix formatting * fixes * remove troubleshooting item and add a disclaimer * add centos 7
This commit is contained in:
parent
3605b7de54
commit
9875c96b66
@ -1,4 +1,4 @@
|
|||||||
# Install OpenVINO™ Runtime on Linux Using YUM Repository {#openvino_docs_install_guides_installing_openvino_yum}
|
# Install OpenVINO™ Runtime on Linux From YUM Repository {#openvino_docs_install_guides_installing_openvino_yum}
|
||||||
|
|
||||||
@sphinxdirective
|
@sphinxdirective
|
||||||
|
|
||||||
@ -22,18 +22,22 @@ Installing OpenVINO Runtime from YUM is recommended for C++ developers. If you a
|
|||||||
| Full requirement listing is available in:
|
| Full requirement listing is available in:
|
||||||
| `System Requirements Page <https://www.intel.com/content/www/us/en/developer/tools/openvino-toolkit/system-requirements.html>`_
|
| `System Requirements Page <https://www.intel.com/content/www/us/en/developer/tools/openvino-toolkit/system-requirements.html>`_
|
||||||
|
|
||||||
|
.. note::
|
||||||
|
|
||||||
|
Installing OpenVINO from YUM is only supported on RHEL 8.2 and higher versions. CentOS 7 is not supported for this installation method.
|
||||||
|
|
||||||
.. tab:: Processor Notes
|
.. tab:: Processor Notes
|
||||||
|
|
||||||
Processor graphics are not included in all processors.
|
Processor graphics are not included in all processors.
|
||||||
See `Product Specifications`_ for information about your processor.
|
See `Product Specifications`_ for information about your processor.
|
||||||
|
|
||||||
.. _Product Specifications: https://ark.intel.com/
|
.. _Product Specifications: https://ark.intel.com/
|
||||||
|
|
||||||
.. tab:: Software
|
.. tab:: Software
|
||||||
|
|
||||||
* `CMake 3.13 or higher, 64-bit <https://cmake.org/download/>`_
|
* `CMake 3.13 or higher, 64-bit <https://cmake.org/download/>`_
|
||||||
* GCC 8.2.0
|
* GCC 8.2.0
|
||||||
* `Python 3.7 - 3.10, 64-bit <https://www.python.org/downloads/>`_
|
* `Python 3.7 - 3.10, 64-bit <https://www.python.org/downloads/>`_
|
||||||
|
|
||||||
@endsphinxdirective
|
@endsphinxdirective
|
||||||
|
|
||||||
@ -41,36 +45,42 @@ Installing OpenVINO Runtime from YUM is recommended for C++ developers. If you a
|
|||||||
|
|
||||||
### Step 1: Set Up the Repository
|
### Step 1: Set Up the Repository
|
||||||
|
|
||||||
1. Create the `openvino-2022.repo` YUM repo file in the `/tmp` directory as a normal user:
|
@sphinxdirective
|
||||||
```
|
|
||||||
tee > /tmp/openvino-2022.repo << EOF
|
1. Create a YUM repository file (`openvino-2022.repo`) in the `/tmp` directory as a normal user:
|
||||||
[OpenVINO]
|
|
||||||
name=Intel(R) Distribution of OpenVINO 2022
|
.. code-block:: sh
|
||||||
baseurl=https://yum.repos.intel.com/openvino/2022
|
|
||||||
enabled=1
|
tee > /tmp/openvino-2022.repo << EOF
|
||||||
gpgcheck=1
|
[OpenVINO]
|
||||||
repo_gpgcheck=1
|
name=Intel(R) Distribution of OpenVINO 2022
|
||||||
gpgkey=https://yum.repos.intel.com/intel-gpg-keys/GPG-PUB-KEY-INTEL-SW-PRODUCTS.PUB
|
baseurl=https://yum.repos.intel.com/openvino/2022
|
||||||
EOF
|
enabled=1
|
||||||
```
|
gpgcheck=1
|
||||||
2. Move the new `openvino-2022.repo` file to the YUM configuration directory `/etc/yum.repos.d`:
|
repo_gpgcheck=1
|
||||||
```sh
|
gpgkey=https://yum.repos.intel.com/intel-gpg-keys/GPG-PUB-KEY-INTEL-SW-PRODUCTS.PUB
|
||||||
sudo mv /tmp/openvino-2022.repo /etc/yum.repos.d
|
EOF
|
||||||
```
|
|
||||||
3. Verify that the new repo is properly setup by running the following command:
|
2. Move the new `openvino-2022.repo` file to the YUM configuration directory, i.e. `/etc/yum.repos.d`:
|
||||||
```sh
|
|
||||||
yum repolist | grep -i openvino
|
.. code-block:: sh
|
||||||
```
|
|
||||||
You will see the available list of packages.
|
sudo mv /tmp/openvino-2022.repo /etc/yum.repos.d
|
||||||
|
|
||||||
|
3. Verify that the new repository is set up properly.
|
||||||
|
|
||||||
|
.. code-block:: sh
|
||||||
|
|
||||||
|
yum repolist | grep -i openvino
|
||||||
|
|
||||||
|
You will see the available list of packages.
|
||||||
|
|
||||||
|
|
||||||
To list available OpenVINO packages, use the following command:
|
To list available OpenVINO packages, use the following command:
|
||||||
|
|
||||||
@sphinxdirective
|
.. code-block:: sh
|
||||||
|
|
||||||
.. code-block:: sh
|
yum list 'openvino*'
|
||||||
|
|
||||||
yum list 'openvino*'
|
|
||||||
|
|
||||||
@endsphinxdirective
|
@endsphinxdirective
|
||||||
|
|
||||||
@ -88,7 +98,7 @@ To list available OpenVINO packages, use the following command:
|
|||||||
|
|
||||||
sudo yum install openvino
|
sudo yum install openvino
|
||||||
|
|
||||||
.. tab:: A Specific Version
|
.. tab:: A Specific Version
|
||||||
|
|
||||||
Run the following command:
|
Run the following command:
|
||||||
|
|
||||||
@ -106,13 +116,13 @@ To list available OpenVINO packages, use the following command:
|
|||||||
|
|
||||||
#### Check for Installed Packages and Version
|
#### Check for Installed Packages and Version
|
||||||
|
|
||||||
Run the following command:
|
|
||||||
|
|
||||||
@sphinxdirective
|
@sphinxdirective
|
||||||
|
|
||||||
.. code-block:: sh
|
Run the following command:
|
||||||
|
|
||||||
yum list installed 'openvino*'
|
.. code-block:: sh
|
||||||
|
|
||||||
|
yum list installed 'openvino*'
|
||||||
|
|
||||||
.. _intall additional components yum:
|
.. _intall additional components yum:
|
||||||
|
|
||||||
@ -135,10 +145,10 @@ To enable the toolkit components to use processor graphics (GPU) on your system,
|
|||||||
|
|
||||||
### Step 5: Build Samples
|
### Step 5: Build Samples
|
||||||
|
|
||||||
To build the C++ or C sample applications for Linux, run the `build_samples.sh` script:
|
|
||||||
|
|
||||||
@sphinxdirective
|
@sphinxdirective
|
||||||
|
|
||||||
|
To build the C++ or C sample applications for Linux, run the `build_samples.sh` script:
|
||||||
|
|
||||||
.. tab:: C++
|
.. tab:: C++
|
||||||
|
|
||||||
.. code-block:: sh
|
.. code-block:: sh
|
||||||
@ -195,8 +205,8 @@ Now that you've installed OpenVINO Runtime, you're ready to run your own machine
|
|||||||
|
|
||||||
* Visit the :ref:`Samples <code samples>` page for other C++ example applications to get you started with OpenVINO, such as:
|
* Visit the :ref:`Samples <code samples>` page for other C++ example applications to get you started with OpenVINO, such as:
|
||||||
|
|
||||||
* `Basic object detection with the Hello Reshape SSD C++ sample <openvino_inference_engine_samples_hello_reshape_ssd_README.html>`_
|
* `Basic object detection with the Hello Reshape SSD C++ sample <openvino_inference_engine_samples_hello_reshape_ssd_README.html>`_
|
||||||
* `Automatic speech recognition C++ sample <openvino_inference_engine_samples_speech_sample_README.html>`_
|
* `Automatic speech recognition C++ sample <openvino_inference_engine_samples_speech_sample_README.html>`_
|
||||||
|
|
||||||
You can also try the following things:
|
You can also try the following things:
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user