This guide provides installation steps for the Intel® Distribution of OpenVINO™ toolkit for Linux* distributed through the YUM repository.
By downloading Intel® OpenVINO you agree to the terms and conditions stated in the Intel Simplified Software License.
Set up the Repository
NOTE: You must be logged in as root to set up and install the repository.
Configure YUM with the OpenVINO repository to install OpenVINO. You have two options for this, using the yum-config-manager or manually by creating a text file and pointing YUM to the file.
- OPTION 1: Import the
.repo file using the yum-config-manager:
yum-utils must be installed on your system. If it’s not currently installed, run the command: sudo yum install yum-utils
- Add repository using the
yum-config-manager: sudo yum-config-manager --add-repo https://yum.repos.intel.com/openvino/2019/setup/intel-openvino-2019.repo
- Import the gpg public key for the repository:
sudo rpm --import https://yum.repos.intel.com/openvino/2019/setup/RPM-GPG-KEY-INTEL-OPENVINO-2019
- OPTION 2: Create the repository file manually:
- Navigate to the repository directory:
- Edit the repo file:
vi intel-openvino-2019.repo
- Append the following code:
[intel-openvino-2019]
name=Intel(R) Distribution of OpenVINO 2019
baseurl=https://yum.repos.intel.com/openvino/2019
enabled=1
gpgcheck=1
gpgkey=file:///etc/pki/rpm-gpg/RPM-GPG-KEY-INTEL-OPENVINO-2019
- Save and close the
intel-openvino-2019.repo file.
- Import the gpg public key for the repository:
sudo rpm --import https://yum.repos.intel.com/openvino/2019/setup/RPM-GPG-KEY-INTEL-OPENVINO-2019
Verify that the new repo is properly setup
Run the following command:
yum repolist | grep -i openvino
Results:
intel-openvino-2019 Intel(R) Distribution of OpenVINO 2019
To list the available OpenVINO packages
Use the following command:
Install the runtime packages Using the YUM Package Manager
Intel® OpenVINO will be installed in: /opt/intel/openvino_<VERSION>.<UPDATE>.<BUILD_NUM>
A symlink will be created: /opt/intel/openvino
To install the latest version
To install the full runtime version of the OpenVINO package:
sudo yum install intel-openvino-runtime-centos7
To install a specific version
To install the full runtime version of the OpenVINO package:
sudo yum install intel-openvino-runtime-centos7-<VERSION>.<UPDATE>.<BUILD_NUM>
To Uninstall a specific version
To uninstall a specific full runtime package:
sudo yum autoremove intel-openvino-runtime-centos<OS_VERSION>-<VERSION>.<UPDATE>.<BUILD_NUM>
Additional Resources