From 110af51800e48b556bff0c0e1b7c6a32a0745a84 Mon Sep 17 00:00:00 2001 From: Anokhov Date: Tue, 16 May 2023 15:15:25 +0200 Subject: [PATCH] Updated APT/YUM instructions with actual version. Added instructions for Ubuntu22. Updated subfolders naming for APT. --- docs/install_guides/installing-openvino-apt.md | 14 ++++++++++---- docs/install_guides/installing-openvino-yum.md | 16 ++++++++-------- 2 files changed, 18 insertions(+), 12 deletions(-) diff --git a/docs/install_guides/installing-openvino-apt.md b/docs/install_guides/installing-openvino-apt.md index 5786d70ba6bdd1..6d315c8a4f0eef 100644 --- a/docs/install_guides/installing-openvino-apt.md +++ b/docs/install_guides/installing-openvino-apt.md @@ -82,13 +82,19 @@ Step 1: Set Up the OpenVINO Toolkit APT Repository .. 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 + echo "deb https://apt.repos.intel.com/openvino/2023 ubuntu18 main" | sudo tee /etc/apt/sources.list.d/intel-openvino-2023.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 + echo "deb https://apt.repos.intel.com/openvino/2023 ubuntu20 main" | sudo tee /etc/apt/sources.list.d/intel-openvino-2023.list + + .. tab:: Ubuntu 22 + + .. code-block:: sh + + echo "deb https://apt.repos.intel.com/openvino/2023 ubuntu22 main" | sudo tee /etc/apt/sources.list.d/intel-openvino-2023.list 3. Update the list of packages via the update command: @@ -139,7 +145,7 @@ Install OpenVINO Runtime .. code-block:: sh - sudo apt install openvino-2022.3.0 + sudo apt install openvino-2023.0.0 .. note:: @@ -216,7 +222,7 @@ To uninstall OpenVINO Runtime via APT, run the following command based on your n .. code-block:: sh - sudo apt autoremove openvino-2022.3.0 + sudo apt autoremove openvino-2023.0.0 What's Next? diff --git a/docs/install_guides/installing-openvino-yum.md b/docs/install_guides/installing-openvino-yum.md index 885b61cf5f6948..5d4177a6aedebf 100644 --- a/docs/install_guides/installing-openvino-yum.md +++ b/docs/install_guides/installing-openvino-yum.md @@ -54,25 +54,25 @@ Step 1: Set Up the Repository +++++++++++++++++++++++++++++ -1. Create a YUM repository file (``openvino-2022.repo``) in the ``/tmp`` directory as a normal user: +1. Create a YUM repository file (``openvino-2023.repo``) in the ``/tmp`` directory as a normal user: .. code-block:: sh - tee > /tmp/openvino-2022.repo << EOF + tee > /tmp/openvino-2023.repo << EOF [OpenVINO] - name=Intel(R) Distribution of OpenVINO 2022 - baseurl=https://yum.repos.intel.com/openvino/2022 + name=Intel(R) Distribution of OpenVINO 2023 + baseurl=https://yum.repos.intel.com/openvino/2023 enabled=1 gpgcheck=1 repo_gpgcheck=1 gpgkey=https://yum.repos.intel.com/intel-gpg-keys/GPG-PUB-KEY-INTEL-SW-PRODUCTS.PUB EOF -2. Move the new ``openvino-2022.repo`` file to the YUM configuration directory, i.e. ``/etc/yum.repos.d``: +2. Move the new ``openvino-2023.repo`` file to the YUM configuration directory, i.e. ``/etc/yum.repos.d``: .. code-block:: sh - sudo mv /tmp/openvino-2022.repo /etc/yum.repos.d + sudo mv /tmp/openvino-2023.repo /etc/yum.repos.d 3. Verify that the new repository is set up properly. @@ -118,7 +118,7 @@ Install OpenVINO Runtime .. code-block:: sh - sudo yum install openvino-2022.3.0 + sudo yum install openvino-2023.0.0 @@ -193,7 +193,7 @@ To uninstall OpenVINO Runtime via YUM, run the following command based on your n .. code-block:: sh - sudo yum autoremove openvino-2022.3.0 + sudo yum autoremove openvino-2023.0.0