Skip to content

Commit

Permalink
Updated APT/YUM instructions with actual version. Added instructions …
Browse files Browse the repository at this point in the history
…for Ubuntu22. Updated subfolders naming for APT. (openvinotoolkit#17562)
  • Loading branch information
artanokhov authored May 19, 2023
1 parent 84db7d0 commit 0b48fc7
Show file tree
Hide file tree
Showing 2 changed files with 18 additions and 12 deletions.
14 changes: 10 additions & 4 deletions docs/install_guides/installing-openvino-apt.md
Original file line number Diff line number Diff line change
Expand Up @@ -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:
Expand Down Expand Up @@ -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::

Expand Down Expand Up @@ -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?
Expand Down
16 changes: 8 additions & 8 deletions docs/install_guides/installing-openvino-yum.md
Original file line number Diff line number Diff line change
Expand Up @@ -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.

Expand Down Expand Up @@ -118,7 +118,7 @@ Install OpenVINO Runtime

.. code-block:: sh

sudo yum install openvino-2022.3.0
sudo yum install openvino-2023.0.0



Expand Down Expand Up @@ -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



Expand Down

0 comments on commit 0b48fc7

Please sign in to comment.